You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently any DEBUG level messages emitted by logging calls before session._setup_logging will never be shown, even if you alter your project logging.yml to show DEBUG level messages. This is because framework-side logging sets kedro logging info to level INFO (which is the right default, we shouldn't change that to DEBUG). This isn't a big deal but would be nice if users had a way to show the messages if they want.
some sort of a verbosity flag to change logging level (note we already have a verbosity option on some commands, but it looks like it only changes how detailed KedroCliError message is) e.g. https://hydra.cc/docs/tutorials/basic/running_your_app/logging/
The text was updated successfully, but these errors were encountered:
Currently any
DEBUG
level messages emitted by logging calls beforesession._setup_logging
will never be shown, even if you alter your project logging.yml to showDEBUG
level messages. This is because framework-side logging sets kedro logging info to levelINFO
(which is the right default, we shouldn't change that toDEBUG
). This isn't a big deal but would be nice if users had a way to show the messages if they want.Options:
KedroCliError
message is) e.g. https://hydra.cc/docs/tutorials/basic/running_your_app/logging/The text was updated successfully, but these errors were encountered: