https://kedro.org/ logo
#questions
Title
# questions
s

Simen Husøy

08/08/2023, 12:14 PM
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

Ankita Katiyar

08/08/2023, 1:09 PM
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

Simen Husøy

08/08/2023, 1:28 PM
I'll try that 👍
j

Jose Nuñez

08/09/2023, 7:50 PM
Just curious, why do you want to disable de logs?
👍 1
s

Simen Husøy

08/11/2023, 9:06 AM
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

Ankita Katiyar

08/11/2023, 3:02 PM
If that didn’t work, maybe changing logging level to only show “warnings” might
s

Simen Husøy

08/15/2023, 11:24 AM
Yep, can try that 👌
2 Views