Files
ppf/misc.py
2025-12-20 16:45:59 +01:00

11 lines
225 B
Python

#!/usr/bin/env python
import time, sys
def timestamp():
"""Return formatted timestamp."""
return time.strftime('%H:%M:%S', time.gmtime())
def _log(strng, level='info'):
print '\r%s/%s\t%s' % (timestamp(), level, strng)