unplugged-system/external/rappor/pipeline/util.py

10 lines
117 B
Python
Raw Permalink Normal View History

"""Common functions."""
import sys
def log(msg, *args):
if args:
msg = msg % args
print >>sys.stderr, msg