##// END OF EJS Templates
http: use better logging with vcsserver context UUID.
marcink -
r2886:7def1637 default
parent child Browse files
Show More
@@ -139,8 +139,9 b' class RemoteRepo(object):'
139 139 return _remote_call(self.url, payload, EXCEPTIONS_MAP, self._session)
140 140
141 141 def _call_with_logging(self, name, *args, **kwargs):
142
143 log.debug('Calling %s@%s with args:%r', self.url, name, args)
142 context_uid = self._wire.get('context')
143 log.debug('Calling %s@%s with args:%r. wire_context: %s',
144 self.url, name, args, context_uid)
144 145 return RemoteRepo._call(self, name, *args, **kwargs)
145 146
146 147 def __getitem__(self, key):
General Comments 0
You need to be logged in to leave comments. Login now