Skip to content

Instantly share code, notes, and snippets.

@nicain
Last active July 26, 2019 17:02
Show Gist options
  • Save nicain/26dc3fbaa8fa515553518743d766d8b6 to your computer and use it in GitHub Desktop.
Save nicain/26dc3fbaa8fa515553518743d766d8b6 to your computer and use it in GitHub Desktop.
Tiny Logger Cheat Example
logger_name = 'TheName'
ch = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
logger = logging.getLogger(logger_name)
logger.setLevel(logging.INFO)
logger.addHandler(ch)
logger.propagate = False
logger.info('Hello World!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment