From c65a8f802e3dec66b09064add5609379b07f5afa Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Wed, 5 May 2021 22:24:57 +0300 Subject: [PATCH] Fix obsolete docstring terminology "Log"->"Console" --- clearml/logger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/logger.py b/clearml/logger.py index f65d305b..dfae195d 100644 --- a/clearml/logger.py +++ b/clearml/logger.py @@ -42,7 +42,7 @@ class Logger(object): methods include scalar plots, line plots, histograms, confusion matrices, 2D and 3D scatter diagrams, text logging, tables, and image uploading and reporting. - In the **ClearML Web-App (UI)**, ``Logger`` output appears in the **RESULTS** tab, **LOG**, **SCALARS**, + In the **ClearML Web-App (UI)**, ``Logger`` output appears in the **RESULTS** tab, **CONSOLE**, **SCALARS**, **PLOTS**, and **DEBUG SAMPLES** sub-tabs. When you compare experiments, ``Logger`` output appears in the comparisons. @@ -125,7 +125,7 @@ class Logger(object): logger.report_text('log some text', level=logging.DEBUG, print_console=False) - You can view the reported text in the **ClearML Web-App (UI)**, **RESULTS** tab, **LOG** sub-tab. + You can view the reported text in the **ClearML Web-App (UI)**, **RESULTS** tab, **CONSOLE** sub-tab. :param str msg: The text to log. :param int level: The log level from the Python ``logging`` package. The default value is ``logging.INFO``.