Lahari Revuri
03/27/2024, 2:15 PMKEDRO_LOGGING_CONFIG to use a custom logging file. However, one thing I can't seem to do anymore is use a resolver in logging.yml? E.g. logs/${runtime_params:example}.log does not work.
I did add logging file patterns to CONFIG_LOADER_ARGS in settings.py but not sure what else to try here.
CONFIG_LOADER_ARGS = {
"config_patterns": {
"logging": [logging*", "logging*/**", "**/logging*"],
}
}Sajid Alam
03/27/2024, 4:13 PMlogging.yml file is directly supported anymore either through the KEDRO_LOGGING_CONFIG or logging.yml itself. Following this discussion it was decided that kedro would move away from project-specific logging.yml files towards a more simplified approach where logging config is set through the KEDRO_LOGGING_CONFIG. This had had the indirect affect on the use of resolvers.Lahari Revuri
03/27/2024, 5:57 PMNok Lam Chan
03/28/2024, 10:58 AM