Merge pull request #41 from horejsek/master

Fix of logging args
This commit is contained in:
Alex Clark ☺ 2013-04-13 12:11:52 -07:00
commit 435e4a7961

View file

@ -191,7 +191,7 @@ def watch_login(func):
if func.__name__ != 'decorated_login' and VERBOSE:
log.info('AXES: Calling decorated function: %s' % func.__name__)
if args:
log.info('args: %s' % args)
log.info('args: %s' % str(args))
if kwargs:
log.info('kwargs: %s' % kwargs)