renatofilho@484: import time renatofilho@484: renatofilho@484: def now(): renatofilho@484: return time.strftime("%Y-%m-%d %H:%M:%S"); renatofilho@484: renatofilho@484: def log(msg): renatofilho@484: new_msg = "[%s] %s" % (now(), msg) renatofilho@484: print new_msg renatofilho@484: return new_msg