From 5b27d290a0a95f6247fc5a0fe6da1e7d905e6b2d Mon Sep 17 00:00:00 2001 From: Assaf Muller Date: Wed, 26 Aug 2015 10:07:03 -0400 Subject: [PATCH] Remove ml2 resource extension success logging This is the cause of a tremendous amount of logs, for no perceivable gain. A normal dvr run in the gate shows this debug message around 120K times, which is way too much. Closes-Bug: #1489952 Change-Id: I26fca8515d866a7cc1638d07fa33bc04479ae221 --- neutron/plugins/ml2/managers.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/neutron/plugins/ml2/managers.py b/neutron/plugins/ml2/managers.py index 690e4ab4e..aaaa88699 100644 --- a/neutron/plugins/ml2/managers.py +++ b/neutron/plugins/ml2/managers.py @@ -846,9 +846,6 @@ class ExtensionManager(stevedore.named.NamedExtensionManager): {'name': driver.name, 'method': method_name}) raise ml2_exc.ExtensionDriverError(driver=driver.name) - LOG.debug("%(method)s succeeded for driver %(driver)s", - {'method': method_name, 'driver': driver.name}) - def extend_network_dict(self, session, base_model, result): """Notify all extension drivers to extend network dictionary.""" self._call_on_dict_driver("extend_network_dict", session, base_model, -- 2.45.2