Skip to content

Commit

Permalink
Update W&B message to LOGGER.info() (#7064)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Mar 20, 2022
1 parent 0529b77 commit e278fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/loggers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self, save_dir=None, weights=None, opt=None, hyp=None, logger=None,
if not wandb:
prefix = colorstr('Weights & Biases: ')
s = f"{prefix}run 'pip install wandb' to automatically track and visualize YOLOv5 🚀 runs (RECOMMENDED)"
print(emojis(s))
self.logger.info(emojis(s))

# TensorBoard
s = self.save_dir
Expand Down

0 comments on commit e278fd6

Please sign in to comment.