We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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():
.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.
The text was updated successfully, but these errors were encountered:
That's a weird error.
I don't think we expected anyone to use the debugging info unless they were actually working on the project.
Sorry, something went wrong.
fixes #31
b7699dc
Only emit debug message "Using default executor" when the default executor is being used.
This fix will be released in version 0.6 when it is released.
harvimt
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: