Update W&B message to `LOGGER.info()` (#7064)
Browse files
utils/loggers/__init__.py
CHANGED
@@ -56,7 +56,7 @@ class Loggers():
|
|
56 |
if not wandb:
|
57 |
prefix = colorstr('Weights & Biases: ')
|
58 |
s = f"{prefix}run 'pip install wandb' to automatically track and visualize YOLOv5 π runs (RECOMMENDED)"
|
59 |
-
|
60 |
|
61 |
# TensorBoard
|
62 |
s = self.save_dir
|
|
|
56 |
if not wandb:
|
57 |
prefix = colorstr('Weights & Biases: ')
|
58 |
s = f"{prefix}run 'pip install wandb' to automatically track and visualize YOLOv5 π runs (RECOMMENDED)"
|
59 |
+
self.logger.info(emojis(s))
|
60 |
|
61 |
# TensorBoard
|
62 |
s = self.save_dir
|