Show More
@@ -361,8 +361,10 b' class HTTPApplication(object):' | |||
|
361 | 361 | call_args = '' |
|
362 | 362 | else: |
|
363 | 363 | call_args = args[1:] |
|
364 | log.debug('method called:%s with args:%s kwargs:%s context_uid: %s', | |
|
365 | method, call_args, kwargs, context_uid) | |
|
364 | ||
|
365 | repo_state_uid = wire.get('repo_state_uid') if wire else None | |
|
366 | log.debug('method called:%s with args:%s kwargs:%s context_uid: %s, repo_state_uid:%s', | |
|
367 | method, call_args, kwargs, context_uid, repo_state_uid) | |
|
366 | 368 | |
|
367 | 369 | try: |
|
368 | 370 | resp = getattr(remote, method)(*args, **kwargs) |
General Comments 0
You need to be logged in to leave comments.
Login now