Is there a Kedro-idiomatic way to silence only the...
# questions
g
Is there a Kedro-idiomatic way to silence only the parts of a traceback that are 'outside' the kedro framework? That is, I want to see where in my pipeline and nodes files things have gone wrong. It is usually not useful for me to see the same pipeline runner code in every traceback. I often scroll back up to see the logging before the traceback starts, which means scrolling back up.
h
Someone will reply to you shortly. In the meantime, this might help:
e
You can silence traceback by changing the logging level to error: https://docs.kedro.org/en/stable/logging/index.html#how-to-customise-kedro-logging
And you can also change the verbosity per component
g
@Elena Khaustova I'll give it a try! Thank you🙏
👍 1