"""Bootstrap logging for all the snowflake-etl flows.""" from logging import config, getLogger from snowflake_etl.conf import getconf config.dictConfig(getconf('logging')) logger = getLogger(__name__) logger.debug('configured logging')