gmyth-stream/lib.py
author renatofilho
Tue Apr 03 16:42:04 2007 +0100 (2007-04-03)
branchtrunk
changeset 484 27e83a8f68d7
parent 470 57833200a415
permissions -rw-r--r--
[svn r489] moved server implementation to new dir
     1 import time
     2 
     3 def now():
     4     return time.strftime("%Y-%m-%d %H:%M:%S");
     5 
     6 def log(msg):
     7     new_msg = "[%s] %s" % (now(), msg)
     8     print new_msg
     9     return new_msg