1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

vacuum: lower level of hash collision debug message to INFO

(This used to be ctdb commit b9bdef46fedfbc543263b67cfee3e896773cd8e8)
This commit is contained in:
Michael Adam 2010-12-23 11:54:09 +01:00
parent 122682be63
commit a5cb537745

View File

@ -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;
}