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,9 +196,9 @@ public class ComponentConfigManager implements ComponentConfigService { ...@@ -196,9 +196,9 @@ public class ComponentConfigManager implements ComponentConfigService {
196 triggerUpdate(componentName); 196 triggerUpdate(componentName);
197 return; 197 return;
198 } 198 }
199 + log.warn("Unable to reset non-existent property {} for component {}",
200 + name, componentName);
199 } 201 }
200 - log.warn("Unable to reset non-existent property {} for component {}",
201 - name, componentName);
202 } 202 }
203 203
204 // Loads existing property values that may have been set. 204 // Loads existing property values that may have been set.
......