diff options
author | Rajesh Amaravathi <rajesh@redhat.com> | 2012-01-16 14:04:10 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-02-09 08:00:12 -0800 |
commit | 18a5e19b62ff675aaa187fe53bd5cfa6d5945ef4 (patch) | |
tree | 5e68ecca59fd6fce09efba59b143814eee646f54 /libglusterfs | |
parent | b71c572df106f33cda0e4b90f174f6426f598741 (diff) |
core: log xlator options in init
* The options (default as well as explicitly set)
for each xlator are logged at DEBUG log-level
Change-Id: I757e206bf06ef5dc60a3255e2377a821c284b6f1
BUG: 767087
Signed-off-by: Rajesh Amaravathi <rajesh@redhat.com>
Reviewed-on: http://review.gluster.com/2647
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/options.h b/libglusterfs/src/options.h index f95040c26..40089ac63 100644 --- a/libglusterfs/src/options.h +++ b/libglusterfs/src/options.h @@ -140,7 +140,7 @@ xlator_option_init_##type (xlator_t *this, dict_t *options, char *key, \ return 0; \ } \ if (value == def_value) { \ - gf_log (this->name, GF_LOG_TRACE, \ + gf_log (this->name, GF_LOG_DEBUG, \ "option %s using default value %s", \ key, value); \ } else { \ |