Skip to content

Instantly share code, notes, and snippets.

@borwickatuw
Last active December 2, 2022 19:33
Show Gist options
  • Select an option

  • Save borwickatuw/7c546821b69e1dea3a6b21ffad893614 to your computer and use it in GitHub Desktop.

Select an option

Save borwickatuw/7c546821b69e1dea3a6b21ffad893614 to your computer and use it in GitHub Desktop.
import logging
import os
if os.environ.get('DEBUG', False):
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment