Try to ignore connection pool warnings

This commit is contained in:
MMaker 2025-02-27 12:03:17 -05:00
parent e6d7278624
commit 0b8f0dc1b9
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

1
app.py
View File

@ -23,6 +23,7 @@ logging.basicConfig(
format='%(asctime)s.%(msecs)03d - %(levelname)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
logging.getLogger("urllib3.connectionpool").setLevel(logging.DEBUG)
logger = logging.getLogger(__name__)
app = Flask(__name__)