# HG changeset patch # User Marcin Kuzminski # Date 2018-01-16 11:41:21 # Node ID cfcc143752aaaf73cedac2473cec3bc957a87e3a # Parent 9b41925327123e5db59230b0d91ad485ca3efb39 integrations: reduce logging on override integration from warn to debug. diff --git a/rhodecode/integrations/registry.py b/rhodecode/integrations/registry.py --- a/rhodecode/integrations/registry.py +++ b/rhodecode/integrations/registry.py @@ -30,7 +30,7 @@ class IntegrationTypeRegistry(collection def register_integration_type(self, IntegrationType): key = IntegrationType.key if key in self: - log.warning( + log.debug( 'Overriding existing integration type %s (%s) with %s' % ( self[key], key, IntegrationType))