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.