Cleaner log format
This commit is contained in:
parent
ae803c0fe0
commit
8f222ff957
6
app.py
6
app.py
@ -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__)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user