From: Casey Bodley Date: Wed, 2 May 2018 20:11:29 +0000 (-0400) Subject: rgw: raise log level on coroutine shutdown errors X-Git-Tag: v13.1.0~10^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F21791%2Fhead;p=ceph.git rgw: raise log level on coroutine shutdown errors Fixes: http://tracker.ceph.com/issues/23974 Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_coroutine.cc b/src/rgw/rgw_coroutine.cc index 47e2d0630b84f..fecfbb4c679cd 100644 --- a/src/rgw/rgw_coroutine.cc +++ b/src/rgw/rgw_coroutine.cc @@ -691,7 +691,7 @@ int RGWCoroutinesManager::run(list& stacks) ret = completion_mgr->get_next(&io); lock.get_write(); if (ret < 0) { - ldout(cct, 0) << "ERROR: completion_mgr.get_next() returned ret=" << ret << dendl; + ldout(cct, 5) << "completion_mgr.get_next() returned ret=" << ret << dendl; } handle_unblocked_stack(context_stacks, scheduled_stacks, io, &blocked_count); } @@ -702,7 +702,7 @@ next: ret = completion_mgr->get_next(&io); lock.get_write(); if (ret < 0) { - ldout(cct, 0) << "ERROR: completion_mgr.get_next() returned ret=" << ret << dendl; + ldout(cct, 5) << "completion_mgr.get_next() returned ret=" << ret << dendl; } if (going_down) { ldout(cct, 5) << __func__ << "(): was stopped, exiting" << dendl;