Skip to content

Instantly share code, notes, and snippets.

@kaycebasques
Last active April 16, 2024 16:31
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 kaycebasques/010a8e11140dd6ad2547ca8445597352 to your computer and use it in GitHub Desktop.
Save kaycebasques/010a8e11140dd6ad2547ca8445597352 to your computer and use it in GitHub Desktop.
pylog
import logging # debug
log_id = 'debug' # debug
logger = logging.getLogger(log_id) # debug
handler = logging.FileHandler(f'{log_id}.log') # debug
logger.addHandler(handler) # debug
logger.setLevel(logging.DEBUG) # debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment