Skip to content

Instantly share code, notes, and snippets.

@ssbb
Created March 2, 2015 14:20
Show Gist options
  • Save ssbb/dafd3cfaf18ce6428122 to your computer and use it in GitHub Desktop.
Save ssbb/dafd3cfaf18ce6428122 to your computer and use it in GitHub Desktop.
def log(func, message, data={}):
for k, v in data.items():
message += '\n\t %s: %%(%s)s' % (k, k)
if data:
return func(message, data)
return func(func)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment