Skip to content

Instantly share code, notes, and snippets.

@takutoez
Created August 6, 2022 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takutoez/9657a976dbd6979a3703964301692329 to your computer and use it in GitHub Desktop.
Save takutoez/9657a976dbd6979a3703964301692329 to your computer and use it in GitHub Desktop.
Djangoのデバッグログ設定(最小)
import logging
logging.basicConfig(
level = logging.DEBUG,
format = '%(asctime)s %(levelname)s %(message)s',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment