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
The default logging level in kedro has changed (see kedro-org/kedro#1732) to "warning" in kedro==0.18.2 to match python's default, and kedro-mflow logs are not displayed anymore
Context
Logging messages are useful to understand what kedro-mlflow does under the hood.
Possible Implementation
Use after_context_created hook to modify logging configuration.
Possible Alternatives
Alternative 1: Ask users to add
loggers:
kedro:
level: INFO<my_package>:
level: INFOkedro-mlflow:
level: INFO
in their logging.yml file. This does not seem very user friendly.
Alternative 2: Set all logger to "warning" to make them visible again. This does look unnecessary scary for users.
The text was updated successfully, but these errors were encountered:
Description
The default logging level in kedro has changed (see kedro-org/kedro#1732) to "warning" in kedro==0.18.2 to match python's default, and
kedro-mflow
logs are not displayed anymoreContext
Logging messages are useful to understand what kedro-mlflow does under the hood.
Possible Implementation
Use
after_context_created
hook to modify logging configuration.Possible Alternatives
in their
logging.yml
file. This does not seem very user friendly.The text was updated successfully, but these errors were encountered: