Skip to content

Commit

Permalink
log debug message when hydra not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
lkhphuc committed Apr 10, 2020
1 parent a05aa71 commit bb98e1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pytorch_lightning/loggers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
from omegaconf import OmegaConf, DictConfig
except ImportError:
import logging
logging.debug('Hydra is not installed. If you want to use Hydra for managing configuration, please install it with `pip install hydra_core`.')
logging.debug('Hydra is not installed. If you want to use Hydra for managing configuration,'
'please install it with `pip install hydra_core`.')

import numpy as np
import torch
Expand Down

0 comments on commit bb98e1c

Please sign in to comment.