Hi everyone, how can I make what’s captured in logging.info () show up in the Console tabs of the experiment details in the WebUI? Currently it seems to capt...
one year ago
@<1523701087100473344:profile|SuccessfulKoala55> could you help me with this please? Thanks! 😄
from clearml import Task
import logging
task = Task.init(
project_name='abc',
task_name='abc',
output_uri=True, # Does not upload anywhere.
)
logger = task.get_logger()
logging.info('This does not show up')
logging.error('This does show up')
@<1523701087100473344:profile|SuccessfulKoala55> This is just an example. In my actual use case, the model training code developed by my team uses the logging module, so I didn’t use the task logger. Also I don’t think the task logger supports different levels of logging
@<1523701087100473344:profile|SuccessfulKoala55> Thank you. How can I override this? Do you mean modifying the logging.conf file? And what settings should I change here to make my logging.info ()
calls show up? Sorry I’m quite new to this.
I’m running my code line by line in VSCode’s terminal. Here’s my snippet: