diff options
author | Anand V. Avati <avati@amp.gluster.com> | 2009-04-21 21:34:38 +0530 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-04-24 21:00:14 +0530 |
commit | 3699c3b966dec936bbbe9ec610d48feb41e0880a (patch) | |
tree | 1d9d997815afd2768a27467edb88a4b3b09df0a0 /transport/socket/src/name.c | |
parent | 9c540ee5bf8a620db3855814db7b0f0f71644aac (diff) |
cleanup of logs in socket and ib-verbs transports
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'transport/socket/src/name.c')
-rw-r--r-- | transport/socket/src/name.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/transport/socket/src/name.c b/transport/socket/src/name.c index 831b9fd439f..bb41c1cd092 100644 --- a/transport/socket/src/name.c +++ b/transport/socket/src/name.c @@ -93,7 +93,7 @@ af_unix_client_bind (transport_t *this, if (path_data) { char *path = data_to_str (path_data); if (!path || strlen (path) > UNIX_PATH_MAX) { - gf_log (this->xl->name, GF_LOG_DEBUG, + gf_log (this->xl->name, GF_LOG_TRACE, "bind-path not specfied for unix socket, " "letting connect to assign default value"); goto err; @@ -109,7 +109,7 @@ af_unix_client_bind (transport_t *this, goto err; } } else { - gf_log (this->xl->name, GF_LOG_DEBUG, + gf_log (this->xl->name, GF_LOG_TRACE, "bind-path not specfied for unix socket, " "letting connect to assign default value"); } @@ -213,7 +213,7 @@ af_inet_client_get_remote_sockaddr (transport_t *this, remote_port_data = dict_get (options, "remote-port"); if (remote_port_data == NULL) { - gf_log (this->xl->name, GF_LOG_DEBUG, + gf_log (this->xl->name, GF_LOG_TRACE, "option remote-port missing in volume %s. Defaulting to %d", this->xl->name, GF_DEFAULT_SOCKET_LISTEN_PORT); @@ -286,7 +286,7 @@ af_unix_client_get_remote_sockaddr (transport_t *this, goto err; } - gf_log (this->xl->name, GF_LOG_DEBUG, + gf_log (this->xl->name, GF_LOG_TRACE, "using connect-path %s", connect_path); sockaddr_un = (struct sockaddr_un *)sockaddr; strcpy (sockaddr_un->sun_path, connect_path); |