diff -r 57833200a415 -r 27e83a8f68d7 gmyth-stream/lib.py --- a/gmyth-stream/lib.py Fri Mar 30 04:12:52 2007 +0100 +++ b/gmyth-stream/lib.py Tue Apr 03 16:42:04 2007 +0100 @@ -4,4 +4,6 @@ return time.strftime("%Y-%m-%d %H:%M:%S"); def log(msg): - print "[%s] %s" % (now(), msg) + new_msg = "[%s] %s" % (now(), msg) + print new_msg + return new_msg