From a5cb53774561b367866703ce08dea298dfa9ec43 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 23 Dec 2010 11:54:09 +0100 Subject: [PATCH] vacuum: lower level of hash collision debug message to INFO (This used to be ctdb commit b9bdef46fedfbc543263b67cfee3e896773cd8e8) --- ctdb/server/ctdb_vacuum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index 6a7687d89a6..94d3416bf3b 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; } -- 2.34.1