Hi, is it possible to disable `etl` command loggin...
# troubleshooting
f
Hi, is it possible to disable
etl
command logging?
e
Hi Flavio, have you tried setting the log level to warning or error?
f
This is my logging configuration:
Copy code
version: 1
disable_existing_loggers: true

formatters:
  json:
    (): meltano.core.logging.json_formatter

handlers:
  console:
    class: logging.StreamHandler
    formatter: json
    stream: "<ext://sys.stderr>"

root:
  level: INFO
  propagate: yes
  handlers: [console]
But even so I only have a console handler it creates a
etl.log
file.