Skip to content

Instantly share code, notes, and snippets.

View takutoez's full-sized avatar

六車卓土 takutoez

View GitHub Profile
@takutoez
takutoez / settings.py
Created August 6, 2022 05:45
Djangoのデバッグログ設定(最小)
import logging
logging.basicConfig(
level = logging.DEBUG,
format = '%(asctime)s %(levelname)s %(message)s',
)