summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2010-12-23 11:54:09 +0100
committerMichael Adam <obnox@samba.org>2011-03-14 13:35:49 +0100
commita5cb53774561b367866703ce08dea298dfa9ec43 (patch)
treef72e9dd989cf4284094176e63ea5a2ba017a2988
parent122682be63bcebfbc238480c0b0f5045bf4834c1 (diff)
downloadsamba-a5cb53774561b367866703ce08dea298dfa9ec43.tar.gz
samba-a5cb53774561b367866703ce08dea298dfa9ec43.tar.xz
samba-a5cb53774561b367866703ce08dea298dfa9ec43.zip
vacuum: lower level of hash collision debug message to INFO
(This used to be ctdb commit b9bdef46fedfbc543263b67cfee3e896773cd8e8)
-rw-r--r--ctdb/server/ctdb_vacuum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c
index 6a7687d89a..94d3416bf3 100644
--- a/ctdb/server/ctdb_vacuum.c
+++ b/ctdb/server/ctdb_vacuum.c
@@ -150,7 +150,7 @@ static int add_record_to_delete_tree(struct vacuum_data *vdata, TDB_DATA key,
hash = ctdb_hash(&key);
if (trbt_lookup32(vdata->delete_tree, hash)) {
- DEBUG(DEBUG_DEBUG, (__location__ " Hash collission when vacuuming, skipping this record.\n"));
+ DEBUG(DEBUG_INFO, (__location__ " Hash collission when vacuuming, skipping this record.\n"));
return 0;
}