summaryrefslogtreecommitdiff
path: root/lib/ldb-samba
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2021-06-22 09:00:09 +0200
committerAndreas Schneider <asn@cryptomilk.org>2021-06-23 08:19:30 +0000
commit1a2ca1432188e5ea239cfac37141b501dd769f99 (patch)
tree795af998c28e189561487d0dc2cfac61e6992803 /lib/ldb-samba
parentfb665462b1739f3bda8b9f02f34144e856d70eed (diff)
downloadsamba-1a2ca1432188e5ea239cfac37141b501dd769f99.tar.gz
lib:ldb-samba: Set log level for ldb tracing to 11
We should not enable ldb tracing on debug level 10 which is meant for Samba debug logs and not trace logs. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'lib/ldb-samba')
-rw-r--r--lib/ldb-samba/ldb_wrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldb-samba/ldb_wrap.c b/lib/ldb-samba/ldb_wrap.c
index 6c2c707284e..f8a65209b84 100644
--- a/lib/ldb-samba/ldb_wrap.c
+++ b/lib/ldb-samba/ldb_wrap.c
@@ -64,7 +64,7 @@ static void ldb_wrap_debug(void *context, enum ldb_debug_level level,
samba_level = 2;
break;
case LDB_DEBUG_TRACE:
- samba_level = 10;
+ samba_level = 11;
break;
};