Skip to content

Instantly share code, notes, and snippets.

View devinSpitz's full-sized avatar

Devin Spitz devinSpitz

View GitHub Profile
#logging
import logging;
logname = "log.txt";
logging.basicConfig(
format='%(asctime)s,%(msecs)d %(name)s %(levelname)s %(message)s',
datefmt='%H:%M:%S',
level=logging.INFO,
handlers=[
logging.FileHandler(logname),