diff -r 57833200a415 -r 6d00c497a403 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 14:56:51 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