Open acarter24 opened 1 year ago
After investigation this is due to the logging policy in azure.core, closing.
I was able to silence the info from Azure Blob with this added the top of file_utils.py
logger=logging.getLogger('azure.core.pipeline.policies.http_logging_policy')
logger.setLevel(logging.WARNING)
It makes for much cleaner logs now.
Is there any way to reduce the http request/responses being printed to the logs? This was for a single table with two rows.