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
We should change all fedmsg logging to occur from a logger acquired using logging.getLogger(__name__) (the recommended practice in the Python logging documentation).
There's loggers using the package name ("fedmsg"), a package name outside of fedmsg ("moksha"), and logging instances are being passed around/stored on objects. This makes it much more annoying to track down where logs are being emitted, and also makes configuration unnecessarily difficult.
The text was updated successfully, but these errors were encountered:
I don't think I can assign it to you since you're not part of the fedora-infra GitHub organization. I think commenting here is enough to let people know you're working on it.
We should change all fedmsg logging to occur from a logger acquired using
logging.getLogger(__name__)
(the recommended practice in the Python logging documentation).There's loggers using the package name ("fedmsg"), a package name outside of fedmsg ("moksha"), and logging instances are being passed around/stored on objects. This makes it much more annoying to track down where logs are being emitted, and also makes configuration unnecessarily difficult.
The text was updated successfully, but these errors were encountered: