hc99's picture
Add files using upload-large-folder tool
fc0f7bd verified
|
raw
history blame
966 Bytes
metadata
id: logging
title: Customizing logging
sidebar_label: Customizing logging

Hydra is configuring Python standard logging library with the dictConfig method. You can learn more about it here. There are two logging configurations, one for Hydra itself and one for the executed jobs.

This example demonstrates how to customize the logging behavior of your Hydra app, by making the following changes to the default logging behavior:

  • Outputs only to stdout (no log file)
  • Output a simpler log line pattern

config.yaml:

hydra:
  job_logging:
    formatters:
      simple:
        format: '[%(levelname)s] - %(message)s'
    root:
      handlers: [console]

This is what the the default logging looks like:

$ python main.py
[2019-09-26 18:58:05,477][__main__][INFO] - Info level message

And this simplified logging looks like:

$ python main.py
[INFO] - Info level message