1 import time
2
3 def now():
4 return time.strftime("%Y-%m-%d %H:%M:%S");
5
6 def log(msg):
7 print "[%s] %s" % (now(), msg)