We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd419f3 commit c7cd926Copy full SHA for c7cd926
src/pyff/logs.py
@@ -19,8 +19,8 @@ def __init__(self, name=None):
19
name = __name__
20
self._log = logging.getLogger(name)
21
self._loggers = {
22
- logging.WARN: self._log.warn,
23
- logging.WARNING: self._log.warn,
+ logging.WARN: self._log.warning,
+ logging.WARNING: self._log.warning,
24
logging.CRITICAL: self._log.critical,
25
logging.INFO: self._log.info,
26
logging.DEBUG: self._log.debug,
0 commit comments