From: Jeremy Allison Date: Sat, 19 May 2012 02:24:51 +0000 (-0700) Subject: Raise the debug level from 1 to 5 in get_share_mode_lock_internal() X-Git-Tag: samba-4.0.0alpha21~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87a62df8e69bfd45c944f44fb7d03da244dc9a44;p=thirdparty%2Fsamba.git 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. --- diff --git a/source3/locking/share_mode_lock.c b/source3/locking/share_mode_lock.c index f28332c2267..493bc15beae 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; }