<logging in python and kedro, how to log only DEBU...
# questions-so
r
logging in python and kedro, how to log only DEBUG info to a file and INFO to console I'm trying to configure logging so that INFO level messages go to the console and DEBUG level messages go to a file instead. So far, I am able to get working INFO to console and DEBUG to file, the problem is that the DEBUG is also being output to the console and I'm not sure why. In particular, I'm using kedro to organize my project and it has some other features I'm trying to figure out. The following works insofar as the console gets INFO and only DEBUG level messages are saved in the file....
n
Does it worth an example or more explanation in our docs? Python’s logging has never been intuitive to me.
j
oof yeah I hate Python logging too... will try to give this a shot