From 3debf50b27bf306552c19e6b00e5e5db75ed9db1 Mon Sep 17 00:00:00 2001 From: Thomas Vachuska Date: Tue, 1 Mar 2016 12:01:21 -0800 Subject: [PATCH] Fixing up config message in the intent registrator. Change-Id: I98bfc517e812f8cc81dcb58658822d5088853d4b --- .../intent/impl/compiler/IntentConfigurableRegistrator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/IntentConfigurableRegistrator.java b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/IntentConfigurableRegistrator.java index 397963cf3b..067a185bed 100644 --- a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/IntentConfigurableRegistrator.java +++ b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/IntentConfigurableRegistrator.java @@ -78,7 +78,7 @@ public class IntentConfigurableRegistrator { @Modified public void modified(ComponentContext context) { if (context == null) { - log.info("Default config"); + log.info("Settings: useFlowObjectives={}", useFlowObjectives); return; } @@ -93,7 +93,7 @@ public class IntentConfigurableRegistrator { if (useFlowObjectives != newFlowObjectives) { useFlowObjectives = newFlowObjectives; changeCompilers(); - log.info("Reconfigured use of flow objectives"); + log.info("Settings: useFlowObjectives={}", useFlowObjectives); } }