Skip to content
Snippets Groups Projects
Commit 4cff52c3 authored by Carlos Vega's avatar Carlos Vega
Browse files

added debug_utils.py module

parent 3b5e4ae7
No related branches found
No related tags found
1 merge request!171Feature/daily availability
# coding=utf-8
import time
def timeit(method):
'''
Debug decorator to measure the execution time of some method or function
'''
def timed(*args, **kw):
ts = time.time()
result = method(*args, **kw)
te = time.time()
if 'log_time' in kw:
name = kw.get('log_name', method.__name__.upper())
kw['log_time'][name] = int((te - ts) * 1000)
else:
print '%r %2.2f ms' % \
(method.__name__, (te - ts) * 1000)
return result
return timed
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment