You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 8 in /kafka/sasl/scram.py calls logging.getLogger() instead of logging.getLogger(__name__). I believe this is a simple typo as the rest of the repo seems to use the latter. The consequence can be noisy logs that require silencing or raising the log level of the root logger, which is undesirable.
This is my first time submitting a public git issue, so please let me know if there's anything else I can do/provide to help.
The text was updated successfully, but these errors were encountered:
Line 8 in /kafka/sasl/scram.py calls
logging.getLogger()
instead oflogging.getLogger(__name__)
. I believe this is a simple typo as the rest of the repo seems to use the latter. The consequence can be noisy logs that require silencing or raising the log level of the root logger, which is undesirable.This is my first time submitting a public git issue, so please let me know if there's anything else I can do/provide to help.
The text was updated successfully, but these errors were encountered: