Skip to content
New issue

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

Clean up logger = logging.getLogger(__name__) #2045

Closed
justinxzhao opened this issue May 19, 2022 · 0 comments
Closed

Clean up logger = logging.getLogger(__name__) #2045

justinxzhao opened this issue May 19, 2022 · 0 comments
Labels
productivity and code quality Engineer productivity, maintainability, consistency, readability

Comments

@justinxzhao
Copy link
Contributor

There are vestiges of a mechanism that was introduced to Ludwig to workaround an issue with tensorflow's logging:

import logging

logger = logging.getLogger(__name__)

...

logger.info()

In torch, these should be able to be replaced with out-of-the-box logging:

import logging

logging.info()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
productivity and code quality Engineer productivity, maintainability, consistency, readability
Projects
None yet
Development

No branches or pull requests

2 participants