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
This commit is contained in:
Anand Avati 2010-10-04 00:29:17 +00:00 committed by Vijay Bellur
parent 6d9bcd67e9
commit 73f8e09449

View File

@ -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;
}