gmyth-stream/server/lib.py
author rosfran
Tue Apr 03 19:39:23 2007 +0100 (2007-04-03)
branchtrunk
changeset 486 56b98fd15019
child 511 16312d0021cb
permissions -rw-r--r--
[svn r491] Solve bug with the --enable-debug on configure.ac; reversed changes in the GMythBackendInfo object; procedure to close the Recorder in not mandatory.
     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