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
logging.basicConfig(level=logging.INFO)
This sets global logging level. A library should not change global logging configurations.
logger = logging.getLogger("WebSocketFactory")
Please use logging.getLogger(__name__). Avoid using general name for a specific library.
logging.getLogger(__name__)
logger.info("Received message: %s", message)
These are debug messages. It would spam users' log. Please change it to debug level.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue 1
This sets global logging level. A library should not change global logging configurations.
Issue 2
Please use
logging.getLogger(__name__)
. Avoid using general name for a specific library.Issue 3
These are debug messages. It would spam users' log. Please change it to debug level.
The text was updated successfully, but these errors were encountered: