From: Jason Dillaman Date: Thu, 28 Apr 2016 15:10:25 +0000 (-0400) Subject: librbd: reduce log level when lock owner not detected X-Git-Tag: v11.0.0~793^2~4 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=5a4893b7a7e50cc399696e1d0cb4d4f8785e723d;p=ceph-ci.git librbd: reduce log level when lock owner not detected This can happen under normal operating conditions and the lock request is automatically retried. Signed-off-by: Jason Dillaman --- diff --git a/src/librbd/image_watcher/NotifyLockOwner.cc b/src/librbd/image_watcher/NotifyLockOwner.cc index 9ee0ebe8a2d..09a3e43e8da 100644 --- a/src/librbd/image_watcher/NotifyLockOwner.cc +++ b/src/librbd/image_watcher/NotifyLockOwner.cc @@ -78,7 +78,7 @@ void NotifyLockOwner::handle_notify(int r) { } if (!lock_owner_responded) { - lderr(cct) << ": no lock owners detected" << dendl; + ldout(cct, 1) << ": no lock owners detected" << dendl; finish(-ETIMEDOUT); return; }