Hey everybody, I'm trying to remove log messages f...
# questions
u
Hey everybody, I'm trying to remove log messages from my console during pipeline execution but I'm failing miserably. I tried to change the logging. yml settings but still no effect. Any clues on how cound I do that? Thanks!
👀 1
e
👍 1
In your case, you can change the log level to
WARNING
and set a path to your logging config as in the example above
The simplest ways to do that is via setting environmental variable or via
settings.py
Copy code
# terminal
export KEDRO_LOGGING_CONFIG="./conf/custom_logging.yml"

# settings.py
KEDRO_LOGGING_CONFIG = "./conf/custom_logging.yml"
👍 1
u
Thanks for the reply!