Skip to content

Instantly share code, notes, and snippets.

@gonzalo123
Created October 27, 2020 09:24
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 gonzalo123/4daa03232206efb6bae866647553b61d to your computer and use it in GitHub Desktop.
Save gonzalo123/4daa03232206efb6bae866647553b61d to your computer and use it in GitHub Desktop.
python logger
import logging
logging.basicConfig(
format='%(asctime)s [%(levelname)s] %(message)s',
level='INFO',
datefmt='%d/%m/%Y %X')
logger = logging.getLogger(__name__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment