Binoy Shah
03/30/2023, 4:23 PMben
03/30/2023, 9:03 PMDefinitions
object: https://docs.dagster.io/concepts/logging/loggers#specifying-default-code-location-loggers
You’d have to modify the code, but only in one placeBinoy Shah
03/30/2023, 9:09 PMben
03/30/2023, 9:10 PMBinoy Shah
03/30/2023, 9:11 PMdagster.yml
or some sort of logger.yaml
that controls various default loggers
dagit_logger:
logger_class: dagster.logging.ConsoleLogger
logger_format: xxx
log_level: INFO
enable_color: true
daemon_logger:
logger_class: dagster.logging.JSONLogger
combine_stacktrace: true
log_level: ERROR
job_logger:
logger_class: dagster.logging.FancyTracingLogger
log_level: DEBUG
log_format: xxx
logger.yaml
file with commented loggers and dagster/dagit start with default valuesdagster.yaml
or workspace.yaml
, it takes a mental mapping to figure out which .yaml
file this goes underAndrea Giardini
03/31/2023, 7:14 AM