From 987612a97529be7e67b89977c4a0cf47906a5ecb Mon Sep 17 00:00:00 2001 From: John Spray Date: Wed, 26 Jul 2017 07:21:40 -0400 Subject: [PATCH] mgr: reduce Gil verbosity at level 20 Even at 20, it's pretty heavy to be logging every lock acquire/release. Signed-off-by: John Spray --- src/mgr/Gil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mgr/Gil.h b/src/mgr/Gil.h index 522d4b0e18add..0c401c0a91234 100644 --- a/src/mgr/Gil.h +++ b/src/mgr/Gil.h @@ -47,7 +47,7 @@ public: // Acquire the GIL, set the current thread state PyEval_RestoreThread(pThreadState); - dout(20) << "GIL acquired for thread state " << pThreadState << dendl; + dout(25) << "GIL acquired for thread state " << pThreadState << dendl; // // If called from a separate OS thread (i.e. a thread not created @@ -84,7 +84,7 @@ public: } // Release the GIL, reset the thread state to NULL PyEval_SaveThread(); - dout(20) << "GIL released for thread state " << pThreadState << dendl; + dout(25) << "GIL released for thread state " << pThreadState << dendl; } private: -- 2.39.5