##// END OF EJS Templates
logging: added http proto logging.
marcink -
r736:e2a18211 default
parent child Browse files
Show More
@@ -352,8 +352,8 b' class HTTPApplication(object):'
352 pass
352 pass
353 args.insert(0, wire)
353 args.insert(0, wire)
354
354
355 log.debug('method called:%s with kwargs:%s context_uid: %s',
355 log.debug('method called:%s with args:%s kwargs:%s context_uid: %s',
356 method, kwargs, context_uid)
356 method, args[1:], kwargs, context_uid)
357
357
358 try:
358 try:
359 resp = getattr(remote, method)(*args, **kwargs)
359 resp = getattr(remote, method)(*args, **kwargs)
General Comments 0
You need to be logged in to leave comments. Login now