diff options
author | Michael Adam <obnox@samba.org> | 2011-12-23 17:10:20 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-12-23 17:39:13 +0100 |
commit | 8348c431f280dc0843bdf685fc006a765c1c7839 (patch) | |
tree | 8f5b00d92d04254130f2c9adf036eb9227584e1a /ctdb | |
parent | 0a6805eed0e050600fb516fbd714755a3c3ec988 (diff) | |
download | samba-8348c431f280dc0843bdf685fc006a765c1c7839.tar.gz samba-8348c431f280dc0843bdf685fc006a765c1c7839.tar.xz samba-8348c431f280dc0843bdf685fc006a765c1c7839.zip |
vacuum: improve logging in insert_record_into_delete_queue()
(This used to be ctdb commit db59ac2ee6a9f5f7f088ebbc5e2800d9e57aae17)
Diffstat (limited to 'ctdb')
-rw-r--r-- | ctdb/server/ctdb_vacuum.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index f405185648..d40d17be04 100644 --- a/ctdb/server/ctdb_vacuum.c +++ b/ctdb/server/ctdb_vacuum.c @@ -1466,13 +1466,13 @@ static int insert_record_into_delete_queue(struct ctdb_db_context *ctdb_db, { DEBUG(DEBUG_INFO, (__location__ " schedule for deletion: " - "hash collision (0x%08x)." - " Skipping the record.\n", hash)); + "hash collision for key hash [0x%08x]. " + "Skipping the record.\n", hash)); return 0; } else { DEBUG(DEBUG_DEBUG, (__location__ " schedule for deletion: " - "updating entry for key with hash 0x%08x.\n", + "updating entry for key with hash [0x%08x].\n", hash)); } } @@ -1483,7 +1483,7 @@ static int insert_record_into_delete_queue(struct ctdb_db_context *ctdb_db, if (ret != 0) { DEBUG(DEBUG_INFO, (__location__ " schedule for deletion: error " - "inserting key with hash 0x%08x into delete queue\n", + "inserting key with hash [0x%08x] into delete queue\n", hash)); return -1; } |