# HG changeset patch # User Marcin Kuzminski # Date 2019-07-16 13:39:36 # Node ID e2a182117bac428a2002c768318922f769eb79d3 # Parent 0116033afaa1536e1f69f555a162a739b7433137 logging: added http proto logging. diff --git a/vcsserver/http_main.py b/vcsserver/http_main.py --- a/vcsserver/http_main.py +++ b/vcsserver/http_main.py @@ -352,8 +352,8 @@ class HTTPApplication(object): pass args.insert(0, wire) - log.debug('method called:%s with kwargs:%s context_uid: %s', - method, kwargs, context_uid) + log.debug('method called:%s with args:%s kwargs:%s context_uid: %s', + method, args[1:], kwargs, context_uid) try: resp = getattr(remote, method)(*args, **kwargs)