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
LoggerAdapter objects are basically logger wrappers with contextual info. They have all the log methods like info().
If we could trace which names (per scope) seem to refer to logger adapters, all our logger-method-specific rules to pick up on misuse with logger adapters too.
The text was updated successfully, but these errors were encountered:
LoggerAdapters seem really unpopular. GitHub code search has 6.1 million hits for logging language:python but only 9k for LoggerAdapter language:python. Also I don’t remember ever seeing them in code or writing.
Description
LoggerAdapter
objects are basically logger wrappers with contextual info. They have all the log methods likeinfo()
.If we could trace which names (per scope) seem to refer to logger adapters, all our logger-method-specific rules to pick up on misuse with logger adapters too.
The text was updated successfully, but these errors were encountered: