summaryrefslogtreecommitdiffstats
path: root/libglusterfs
diff options
context:
space:
mode:
authorHarshavardhana <harsha@harshavardhana.net>2013-08-10 20:49:12 -0700
committerVijay Bellur <vbellur@redhat.com>2013-08-18 05:06:45 -0700
commit8cde114f65e7a08c9ca3637ff46b8b6cd6dc9426 (patch)
tree62d30ed27fc143eb14693d19f91906ea59b03315 /libglusterfs
parent2a195787746a6bfd3e1da6bf38c657ae0ccda24d (diff)
glusterd: Move certain logs into 'DEBUG' level
Confusing "Error" messages in logs can cause user panic and false positives - avoid them as necessary in future. Change-Id: I906c64eea879b19a8db099c89d1d7f874e5530db BUG: 995784 Signed-off-by: Harshavardhana <harsha@harshavardhana.net> Reviewed-on: http://review.gluster.org/5555 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r--libglusterfs/src/store.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libglusterfs/src/store.c b/libglusterfs/src/store.c
index 621146be..48c79ee0 100644
--- a/libglusterfs/src/store.c
+++ b/libglusterfs/src/store.c
@@ -403,8 +403,9 @@ gf_store_handle_retrieve (char *path, gf_store_handle_t **handle)
ret = stat (path, &statbuf);
if (ret) {
- gf_log ("", GF_LOG_ERROR, "Unable to retrieve store handle "
- "%s, error: %s", path, strerror (errno));
+ gf_log ("", GF_LOG_ERROR, "Path corresponding to "
+ "%s, returned error: (%s)",
+ path, strerror (errno));
goto out;
}
ret = gf_store_handle_new (path, handle);