-
If we use the default Now I want to disable the default logging file that is created by Hydra, i.e. Can anyone guide me on how I can disable the default logging by Hydra using Python code? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can do from hydra.conf import HelpConf
hydra_conf = HydraConf(
job_logging={
"version": None,
"root": None,
"disable_existing_loggers": False,
},
hydra_logging={
"version": None,
"root": None,
"disable_existing_loggers": False,
},
) and use it as demonstrated in How To: Customize Hydra's Configuration I believe that will do the trick. |
Beta Was this translation helpful? Give feedback.
You can do
and use it as demonstrated in How To: Customize Hydra's Configuration
I believe that will do the trick.