summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2012-02-09 14:10:41 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-27 12:50:29 +0100
commit8a0e420d4c5c48f49ec15fb91258f8a569ed1a63 (patch)
treeb1181e5f82680b8bcd313ee727cb07e9928c9525 /source3
parentdc677b3baf0585862d4417fc0907f8f5940dbeb4 (diff)
downloadsamba-8a0e420d4c5c48f49ec15fb91258f8a569ed1a63.tar.gz
samba-8a0e420d4c5c48f49ec15fb91258f8a569ed1a63.tar.bz2
samba-8a0e420d4c5c48f49ec15fb91258f8a569ed1a63.zip
dbwrap: changed log level for information about lock order
we were filling our logs with lock ordering debug lines Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Mon Feb 27 12:50:29 CET 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/dbwrap/dbwrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/dbwrap/dbwrap.c b/source3/lib/dbwrap/dbwrap.c
index e443fa5eb3..11ab5d91f0 100644
--- a/source3/lib/dbwrap/dbwrap.c
+++ b/source3/lib/dbwrap/dbwrap.c
@@ -118,7 +118,7 @@ static struct dbwrap_lock_order_state *dbwrap_check_lock_order(
used = ffs(lock_order_mask);
- DEBUG(1, ("used=%d, lock_order=%d, idx=%d\n", used,
+ DEBUG(5, ("used=%d, lock_order=%d, idx=%d\n", used,
(int)db->lock_order, (int)idx));
if ((used != 0) && (used-1 <= idx)) {