Skip to content

Instantly share code, notes, and snippets.

@wavedocs
Forked from Integralist/capture logger output.py
Created November 1, 2017 20:12
Show Gist options
  • Save wavedocs/7891e4dc5ddfe18c83a81ff30b5d9b2b to your computer and use it in GitHub Desktop.
Save wavedocs/7891e4dc5ddfe18c83a81ff30b5d9b2b to your computer and use it in GitHub Desktop.
[Python3 Logging] Simple Python3 Logging Configuration #tags: logs, python3
# https://docs.python.org/3/library/logging.html#logrecord-attributes
import logging
log = logging.getLogger() # <logging.RootLogger at 0x107f72f98>
log.setLevel(logging.DEBUG)
log.debug('123') # DEBUG:root:123
log.info('456') # INFO:root:456
# Alternatively...
import logging
logging.basicConfig(level=logging.DEBUG, format='%(relativeCreated)6d %(threadName)s %(message)s')
# Something I like...
import logging
logging.basicConfig(
level=logging.INFO,
format='[%(levelname)s %(asctime)s path:%(pathname)s lineno:%(lineno)s] %(message)s',
datefmt='%Y/%m/%d %I:%M:%S'
)
# Keep logs quiet (so only critical messages are shown, not INFO messages)
logging.getLogger("boto").setLevel(logging.CRITICAL)
logging.getLogger("nsq").setLevel(logging.CRITICAL)
import logging
import structlog
# create logger
logger = logging.getLogger('simple_example')
logger.setLevel(logging.DEBUG)
# We need factory, to return application-wide logger
def logger_factory():
return logger
structlog.configure(
processors=[
structlog.processors.JSONRenderer(indent=2, sort_keys=True)
],
logger_factory=logger_factory
)
log = structlog.getLogger()
log.debug("Now you see me")
logger.setLevel(logging.ERROR)
log.debug("Now you don't")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment