Skip to content

Commit

Permalink
remove loggin
Browse files Browse the repository at this point in the history
  • Loading branch information
danbryan committed Aug 31, 2023
1 parent ff4d730 commit f5ebcbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
from datetime import datetime
from random import shuffle
import logging
# import logging
import threading
from flask import Flask, jsonify, request
from flask_caching import Cache
Expand All @@ -15,7 +15,7 @@
app = Flask(__name__)

# Logging configuration
logging.basicConfig(filename='app.log', level=print, format='%(asctime)s - %(levelname)s - %(message)s')
# logging.basicConfig(filename='app.log', level=print, format='%(asctime)s - %(levelname)s - %(message)s')

# Suppress only the single InsecureRequestWarning from urllib3
requests.packages.urllib3.disable_warnings(requests.packages.urllib3.exceptions.InsecureRequestWarning)
Expand Down

0 comments on commit f5ebcbe

Please sign in to comment.