Skip to content

Disable Hydra Logging by default #640

Closed Answered by rsokl
aadimator asked this question in Q&A
Discussion options

You must be logged in to vote

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.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@aadimator
Comment options

Answer selected by aadimator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants