Thomas Vachuska

ONOS-1736 - Moved log.warn for property reset to be emitted only when the proper…

…ty itself is not known; it will not be emitted when the component is not known.

Change-Id: Ib0ae105336c2fb2bcddfcf2c8a69ff6a2c501a59
...@@ -196,10 +196,10 @@ public class ComponentConfigManager implements ComponentConfigService { ...@@ -196,10 +196,10 @@ public class ComponentConfigManager implements ComponentConfigService {
196 triggerUpdate(componentName); 196 triggerUpdate(componentName);
197 return; 197 return;
198 } 198 }
199 - }
200 log.warn("Unable to reset non-existent property {} for component {}", 199 log.warn("Unable to reset non-existent property {} for component {}",
201 name, componentName); 200 name, componentName);
202 } 201 }
202 + }
203 203
204 // Loads existing property values that may have been set. 204 // Loads existing property values that may have been set.
205 private void loadExistingValues(String componentName) { 205 private void loadExistingValues(String componentName) {
......