marten_nilsson
11/22/2022, 12:17 PMversion: 1
disable_existing_loggers: false
formatters:
structured_colored:
(): meltano.core.logging.console_log_formatter
colors: True
json:
(): meltano.core.logging.json_formatter
handlers:
console:
class: logging.StreamHandler
level: INFO
formatter: structured_colored
stream: "<ext://sys.stderr>"
file:
class: logging.FileHandler
level: DEBUG
filename: meltano.log
formatter: json
root:
level: DEBUG
propagate: yes
handlers: [console, file]
But nothing happens when I start my job using meltano run. I am expecting a file called meltano.log to appear in my root directory.marten_nilsson
11/22/2022, 12:18 PMedgar_ramirez_mondragon
11/22/2022, 2:43 PMlogging.yaml , i.e. with the a in the extension?edgar_ramirez_mondragon
11/22/2022, 2:44 PMmarten_nilsson
11/22/2022, 3:51 PM