How to avoid this DEBUG information when running Functions and python connected to a NoSQL table in OCI
"01F4J52HHK1BT062RZJ00065AZ - urllib3.connectionpool - DEBUG XXXXXXXXXXX"
How to avoid this DEBUG information when running Functions and python connected to a NoSQL table in OCI
"01F4J52HHK1BT062RZJ00065AZ - urllib3.connectionpool - DEBUG XXXXXXXXXXX"
You could create a separate logger for urllib3 or alternatively you could set your main logger level to something lower than debug
urllib3_logger = logging.getLogger('urllib3')
urllib3_logger.setLevel(logging.WARNING)
or
logger = logging.getLogger()
logger.setLevel(logging.INFO)