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 c74b8e6 commit 02fe9d3Copy full SHA for 02fe9d3
pytorch_lightning/__init__.py
@@ -24,8 +24,8 @@
24
# We are not importing the rest of the scikit during the build
25
# process, as it may not be compiled yet
26
else:
27
- import logging
28
- _logger = logging.getLogger("lightning")
+ from logging import getLogger
+ _logger = getLogger("lightning")
29
30
from .core import LightningModule
31
from .trainer import Trainer
0 commit comments