prratek_ramchandani
02/22/2022, 2:45 PMmetrics_log_level
to DEBUG or NONE
• I can log state less frequently by changing state_partitioning_keys
to track less state bookmarks in the first place
• What I'm left with is the SDK still logging Beginning full table sync of ... with context ...
after each media object, leading to in our case tens of thousands of lines of logs. Is there anything we can do to not log that for child streams in particular?edgar_ramirez_mondragon
02/22/2022, 4:38 PMimport logging
logger = logging.getLogger("tap-example") # change this to the name of your tap
logger.setLevel(logging.WARNING)
prratek_ramchandani
02/22/2022, 5:41 PMMELTANO_CLI_LOG_LEVEL
environment variable in that tap's execution environmentedgar_ramirez_mondragon
02/22/2022, 7:48 PMis it possible to set log level for a single tap in the meltano project instead of in the tap?not currently
it sounds like my best option would be to set aso yeah, I think you could still doenvironment variable in that tap's execution environmentMELTANO_CLI_LOG_LEVEL
plugins:
tap-example:
config:
metrics_log_level: $MELTANO_CLI_LOG_LEVEL
prratek_ramchandani
02/22/2022, 8:00 PMaaronsteers
02/24/2022, 2:30 AMedgar_ramirez_mondragon
02/24/2022, 3:16 AMprratek_ramchandani
02/24/2022, 3:43 AM