is there a command to list what the current loggin...
# getting-started
y
is there a command to list what the current logging configuration is? I've set the
MELTANO_CLI_LOG_CONFIG
to point to a custom log file called
logging.yaml
but when i run
meltano run <TAP> <TARGET>
it doesn't seem to be picking up the configuration. I've also tried specifying the config through
meltano --log-config=logging.yaml run ...
to no effect. I know i can export the environment variable to get the value but i'm wondering if there's a meltano command that can tell me what actual logging configuration it's using.
e
Hi @yao_zhang
to no effect
What effect did you expect that was missing? You can see which value Meltano is picking up with
meltano config meltano list
.
y
i had modified the level from info to debug but it was still only showing some of the logs. thanks for the command i'll try it out!