What's the best way to slightly tweak the default ...
# troubleshooting
r
What's the best way to slightly tweak the default Meltano log format? I want to keep everything but remove the timestamp. Do I have to redefine the entire default logging config in
logging.yaml
, or is there a more succinct way?
e
I don't think it's possible at the moment since it's hardcoded in the structlog config: • https://github.com/meltano/meltano/blob/34f713f11e70a294b0d1ac1cc26fbe4edb15737e/src/meltano/core/logging/utils.py#L147-L155https://github.com/meltano/meltano/blob/34f713f11e70a294b0d1ac1cc26fbe4edb15737e/src/meltano/core/logging/formatters.py#L23-L28 I don't even think it's possible to configure it with
logging.yaml
🫤. One path could be to make it opt-out similar to how https://github.com/meltano/meltano/pull/8494 makes
include_callsite_parameters
opt-in 🙂