From 990d6a99d41111ea18481db55566a96c2fc4dad4 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Wed, 16 Jan 2019 20:24:06 +0530 Subject: core: move logs which are only developer relevant to DEBUG level We had only changed the log level to DEBUG in release branch earlier. But considering 90%+ of our deployments happen in same env, we can look at these specific logs on need basis. With this change, the master branch will be easier to debug with lesser logs. Change-Id: I4157a7ec7d5ec9c2948b2bbc1e4cb8317f28d6b8 Updates: bz#1666833 Signed-off-by: Amar Tumballi --- libglusterfs/src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libglusterfs/src/options.c') diff --git a/libglusterfs/src/options.c b/libglusterfs/src/options.c index da24122205e..2884d200caa 100644 --- a/libglusterfs/src/options.c +++ b/libglusterfs/src/options.c @@ -966,7 +966,7 @@ xl_opt_validate(dict_t *dict, char *key, data_t *value, void *data) stub->errstr = errstr; if (fnmatch(opt->key[0], key, FNM_NOESCAPE) != 0) { - gf_msg(xl->name, GF_LOG_WARNING, 0, LG_MSG_INVALID_ENTRY, + gf_msg(xl->name, GF_LOG_DEBUG, 0, LG_MSG_INVALID_ENTRY, "option '%s' is deprecated, preferred is '%s', " "continuing with correction", key, opt->key[0]); -- cgit