summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoumya Koduri <skoduri@redhat.com>2016-02-23 18:10:36 +0530
committerKaleb KEITHLEY <kkeithle@redhat.com>2016-02-23 10:47:21 -0800
commit730ea2ca509a5bea05726090cd1e4cb67f040b7c (patch)
treedaa4c8c7f517f55446dc18f072029823dae9d964
parentf3c48b4a729a56ad6e6d9b2ac0b08ce1ec0f3fc3 (diff)
libglusterfs: Change log-level to DEBUG for default_* fops()
Change-Id: I7087476bbc00cd23ba65ea119bc0fe8a9bff347d BUG: 1311124 Signed-off-by: Soumya Koduri <skoduri@redhat.com> Reviewed-on: http://review.gluster.org/13498 Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com> Smoke: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Niels de Vos <ndevos@redhat.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
-rw-r--r--libglusterfs/src/defaults-tmpl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libglusterfs/src/defaults-tmpl.c b/libglusterfs/src/defaults-tmpl.c
index 8a05ca8b6fb..c5a0dcec2f0 100644
--- a/libglusterfs/src/defaults-tmpl.c
+++ b/libglusterfs/src/defaults-tmpl.c
@@ -91,7 +91,7 @@ struct xlator_fops *default_fops = &_default_fops;
int32_t
default_forget (xlator_t *this, inode_t *inode)
{
- gf_log_callingfn (this->name, GF_LOG_WARNING, "xlator does not "
+ gf_log_callingfn (this->name, GF_LOG_DEBUG, "xlator does not "
"implement forget_cbk");
return 0;
}
@@ -100,7 +100,7 @@ default_forget (xlator_t *this, inode_t *inode)
int32_t
default_releasedir (xlator_t *this, fd_t *fd)
{
- gf_log_callingfn (this->name, GF_LOG_WARNING, "xlator does not "
+ gf_log_callingfn (this->name, GF_LOG_DEBUG, "xlator does not "
"implement releasedir_cbk");
return 0;
}
@@ -108,7 +108,7 @@ default_releasedir (xlator_t *this, fd_t *fd)
int32_t
default_release (xlator_t *this, fd_t *fd)
{
- gf_log_callingfn (this->name, GF_LOG_WARNING, "xlator does not "
+ gf_log_callingfn (this->name, GF_LOG_DEBUG, "xlator does not "
"implement release_cbk");
return 0;
}