Even at 20, it's pretty heavy to be logging
every lock acquire/release.
Signed-off-by: John Spray <john.spray@redhat.com>
// 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
}
// 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: