Cleaner log format

This commit is contained in:
MMaker 2025-02-27 11:01:48 -05:00
parent ae803c0fe0
commit 8f222ff957
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

6
app.py
View File

@ -18,7 +18,11 @@ import urllib.parse
from dotenv import load_dotenv
load_dotenv()
logging.basicConfig(level=logging.INFO)
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
logger = logging.getLogger(__name__)
app = Flask(__name__)