From 202bcaee24477dccf3a2047933a898ec0ad786c2 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Wed, 27 Feb 2013 12:18:59 -0800 Subject: cluster/dht: print hash function munging logs in DEBUG mode Change-Id: Ia2e6bce80710d103da9d78afdb389ea162b00686 BUG: 912564 Signed-off-by: Anand Avati Reviewed-on: http://review.gluster.org/4590 Reviewed-by: Jeff Darcy Tested-by: Gluster Build System --- xlators/cluster/dht/src/dht-hashfn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators') 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); } } -- cgit