# HG changeset patch # User Marcin Kuzminski # Date 2018-07-13 13:33:25 # Node ID 7def1637acd2a950fa62a5b44d6aec0d81c56ae4 # Parent 4b51a12475a2977c50bba75a4f7438e11d916830 http: use better logging with vcsserver context UUID. diff --git a/rhodecode/lib/vcs/client_http.py b/rhodecode/lib/vcs/client_http.py --- a/rhodecode/lib/vcs/client_http.py +++ b/rhodecode/lib/vcs/client_http.py @@ -139,8 +139,9 @@ class RemoteRepo(object): return _remote_call(self.url, payload, EXCEPTIONS_MAP, self._session) def _call_with_logging(self, name, *args, **kwargs): - - log.debug('Calling %s@%s with args:%r', self.url, name, args) + context_uid = self._wire.get('context') + log.debug('Calling %s@%s with args:%r. wire_context: %s', + self.url, name, args, context_uid) return RemoteRepo._call(self, name, *args, **kwargs) def __getitem__(self, key):