# HG changeset patch # User Marcin Kuzminski # Date 2016-12-02 14:38:16 # Node ID 92e92ab5fb79d83fead0915cd163f6ad4ef28b5b # Parent 7eb14a12d0eb4a35c6db0a9cfa7f2e5e556b3d82 logging: remove excesive log that is redundant with following entry. diff --git a/vcsserver/base.py b/vcsserver/base.py --- a/vcsserver/base.py +++ b/vcsserver/base.py @@ -54,9 +54,6 @@ class RepoFactory(object): def _repo(self, wire, createfunc): context = wire.get('context', None) cache = wire.get('cache', True) - log.debug( - 'GET %s@%s with cache:%s. Context: %s', - self.__class__.__name__, wire['path'], cache, context) if context and cache: cache_key = (context, wire['path'])