diff options
author | Anand Avati <avati@gluster.com> | 2010-10-04 00:29:17 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-10-04 02:44:02 -0700 |
commit | 73f8e094495a71f6a6a4c90495874396f2614567 (patch) | |
tree | fbe7647881de1407981ca9cb5f882f387061f50d | |
parent | 6d9bcd67e99ad638ca260f04cff401e7d9ebe3c5 (diff) |
rpcsvc: bump log level of message for missing transport type
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 875 (Implement a new protocol to provide proper backward/forward compatibility)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=875
-rw-r--r-- | rpc/rpc-lib/src/rpcsvc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/rpc-lib/src/rpcsvc.c b/rpc/rpc-lib/src/rpcsvc.c index a243db17a..4926b3796 100644 --- a/rpc/rpc-lib/src/rpcsvc.c +++ b/rpc/rpc-lib/src/rpcsvc.c @@ -1879,14 +1879,14 @@ rpcsvc_create_listeners (rpcsvc_t *svc, dict_t *options, char *name) data = dict_get (options, "transport-type"); if (data == NULL) { - gf_log (GF_RPCSVC, GF_LOG_DEBUG, + gf_log (GF_RPCSVC, GF_LOG_ERROR, "option transport-type not set"); goto out; } transport_type = data_to_str (data); if (transport_type == NULL) { - gf_log (GF_RPCSVC, GF_LOG_DEBUG, + gf_log (GF_RPCSVC, GF_LOG_ERROR, "option transport-type not set"); goto out; } |