What is the appropriate way to disable the logs fr...
# questions
s
What is the appropriate way to disable the logs from kedro in the terminal? Have tried to modify the logging.yml file in
conf/base/logging.yml
without success
a
In
conf/base/logging.yml
try changing the last part from -
Copy code
root:
  handlers: [rich, info_file_handler]
to -
Copy code
root:
  handlers: []
s
I'll try that 👍
j
Just curious, why do you want to disable de logs?
👍 1
s
Because I have a lot of other stdout's that I rather want to see than the kedro outputs. Have tried to remove the handlers in the config.yml but they still print 😅
a
If that didn’t work, maybe changing logging level to only show “warnings” might
s
Yep, can try that 👌