summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/dht/src/dht-hashfn.c
diff options
context:
space:
mode:
authorAnand Avati <avati@redhat.com>2013-02-27 12:18:59 -0800
committerAnand Avati <avati@redhat.com>2013-02-27 14:55:15 -0800
commit202bcaee24477dccf3a2047933a898ec0ad786c2 (patch)
tree51c75224fd5a9e347079a536dfb2a5450ade51cb /xlators/cluster/dht/src/dht-hashfn.c
parentdafd31b7188057367cb9fb780f921f4bb8a930fb (diff)
cluster/dht: print hash function munging logs in DEBUG mode
Change-Id: Ia2e6bce80710d103da9d78afdb389ea162b00686 BUG: 912564 Signed-off-by: Anand Avati <avati@redhat.com> Reviewed-on: http://review.gluster.org/4590 Reviewed-by: Jeff Darcy <jdarcy@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators/cluster/dht/src/dht-hashfn.c')
-rw-r--r--xlators/cluster/dht/src/dht-hashfn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/cluster/dht/src/dht-hashfn.c b/xlators/cluster/dht/src/dht-hashfn.c
index 2276ca116be..519dbfbb266 100644
--- a/xlators/cluster/dht/src/dht-hashfn.c
+++ b/xlators/cluster/dht/src/dht-hashfn.c
@@ -94,11 +94,11 @@ dht_hash_compute (xlator_t *this, int type, const char *name, uint32_t *hash_p)
if (!munged && priv->rsync_regex_valid) {
len = strlen(name) + 1;
rsync_friendly_name = alloca(len);
- gf_log (this->name, GF_LOG_INFO, "trying regex for %s", name);
+ gf_log (this->name, GF_LOG_DEBUG, "trying regex for %s", name);
munged = dht_munge_name (name, rsync_friendly_name, len,
&priv->rsync_regex);
if (munged) {
- gf_log (this->name, GF_LOG_INFO,
+ gf_log (this->name, GF_LOG_DEBUG,
"munged down to %s", rsync_friendly_name);
}
}