Debug output appears to indicate default executor even when default isn't used · Issue #31 · harvimt/quamash (original) (raw)
The user's program can run the following line to enable debug output on stderr/stdout:
logging.basicConfig(level=logging.DEBUG)
The debug output states the following message, apparently unconditionally, when user code runs .run_in_executor()
:
DEBUG:quamash.QEventLoop:Using default executor
... and the source code seems to confirm this [init.py starting at line 480, run_in_executor() method].
Hopefully the logic can be updated to print the mentioned message only when the default executor is being used.