diff options
author | Jeremy Allison <jra@samba.org> | 2012-05-18 19:24:51 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-05-18 19:33:37 -0700 |
commit | 87a62df8e69bfd45c944f44fb7d03da244dc9a44 (patch) | |
tree | 83b26dd22ac5d8e018c2d396cf7cd37bd52a9593 /source3/locking/share_mode_lock.c | |
parent | 5c219a1c5cc9450743c946aeb4a2b99e58f15b2d (diff) | |
download | samba-87a62df8e69bfd45c944f44fb7d03da244dc9a44.tar.gz |
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.
Diffstat (limited to 'source3/locking/share_mode_lock.c')
-rw-r--r-- | source3/locking/share_mode_lock.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |