Raise the debug level from 1 to 5 in get_share_mode_lock_internal()
authorJeremy Allison <jra@samba.org>
Sat, 19 May 2012 02:24:51 +0000 (19:24 -0700)
committerJeremy Allison <jra@samba.org>
Sat, 19 May 2012 02:33:37 +0000 (19:33 -0700)
This isn't a fatal condition, there is a valid codepath
that can cause this message.

source3/locking/share_mode_lock.c

index f28332c226773c757a0b87029dbb6bd1defcbdf4..493bc15beaef857acd28fd48bc385eeb80c1938c 100644 (file)
@@ -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;
        }