From 87a62df8e69bfd45c944f44fb7d03da244dc9a44 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 18 May 2012 19:24:51 -0700 Subject: Raise the debug level from 1 to 5 in get_share_mode_lock_internal() This isn't a fatal condition, there is a valid codepath that can cause this message. --- source3/locking/share_mode_lock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/locking/share_mode_lock.c b/source3/locking/share_mode_lock.c index f28332c226..493bc15bea 100644 --- a/source3/locking/share_mode_lock.c +++ b/source3/locking/share_mode_lock.c @@ -355,7 +355,8 @@ static struct share_mode_lock *get_share_mode_lock_internal( } if (d == NULL) { - DEBUG(1, ("Could not get share mode lock\n")); + DEBUG(5, ("get_share_mode_lock_internal: " + "Could not get share mode lock\n")); TALLOC_FREE(rec); return NULL; } -- cgit