From a5a7947edf7fdcdc2e3bc905c455c68e3648fa2d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 25 Feb 2016 16:02:36 +0100 Subject: [PATCH] dbwrap_util: improve a debug message in dbwrap_delete_action() Signed-off-by: Michael Adam Reviewed-by: Volker Lendecke (cherry picked from commit d4408c495be851c684e7b4b5ff56e5eb82f16c06) BUG: https://bugzilla.samba.org/show_bug.cgi?id=11779 --- lib/dbwrap/dbwrap_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/dbwrap/dbwrap_util.c b/lib/dbwrap/dbwrap_util.c index 901ef564ab7..5118fb788f3 100644 --- a/lib/dbwrap/dbwrap_util.c +++ b/lib/dbwrap/dbwrap_util.c @@ -412,7 +412,8 @@ static NTSTATUS dbwrap_delete_action(struct db_context * db, void *private_data) status = dbwrap_record_delete(rec); if (!NT_STATUS_IS_OK(status)) { - DEBUG(5, ("delete_rec returned %s\n", nt_errstr(status))); + DBG_INFO("dbwrap_record_delete returned %s\n", + nt_errstr(status)); } talloc_free(rec); -- 2.11.4.GIT