# HG changeset patch # User Marcin Kuzminski # Date 2017-03-23 14:16:33 # Node ID aea163882544aa655632d97f90a2217802f28151 # Parent abe5887165c2a2637399102035780f634b823d39 git: improve logging of git remote commands. 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 @@ -138,7 +138,8 @@ 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', self.url, name) + + log.debug('Calling %s@%s with args:%r', self.url, name, args) return RemoteRepo._call(self, name, *args, **kwargs) def __getitem__(self, key):