https://dagster.io/ logo
#dagster-support
Title
# dagster-support
m

Mark Fickett

05/04/2022, 1:50 PM
Is there a way to filter
DEBUG
event logs out of the console output? I already have
python_logs: python_log_level: INFO
in my
dagster.yaml
, but I still see lots of messages like
2022-05-04 09:48:31 -0400 - dagster - DEBUG - battery_data_job_local - 9771a352-579a-428a-a2cc-a954bbcba6c9 - 2074967 - <http://data_pipe_graph.my|data_pipe_graph.my>_op - STEP_INPUT - Got input "test_id_list" of type "[String]". (Type check passed).
daggy success 1
I think https://dagster.slack.com/archives/C01U954MEER/p1640271038068800?thread_ts=1640256891.061800&amp;cid=C01U954MEER answers it, this works in my run config:
Copy code
loggers:
  console:
    config:
      log_level: INFO
I was looking at the python loggers docs and needed https://docs.dagster.io/concepts/logging/loggers#examples instead.