Skip to content

Instantly share code, notes, and snippets.

@gongzhitaao
gongzhitaao / py-logger-template.py
Last active May 1, 2024 18:08
Python logging template
import logging
import logging.config
from datetime import datetime
import os
import sys
LOGFILE = '/tmp/{0}.{1}.log'.format(
os.path.basename(__file__),
datetime.now().strftime('%Y%m%dT%H%M%S'))