# HG changeset patch # User Marcin Kuzminski # Date 2016-12-02 14:38:16 # Node ID 160d7190d6fb522dba5b2c33e6e8a2765264d88f # Parent d98cac26c83f348f67bb53feda976792b27972c0 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'])