Committed by
Gerrit Code Review
Fixing up config message in the intent registrator.
Change-Id: I98bfc517e812f8cc81dcb58658822d5088853d4b
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -78,7 +78,7 @@ public class IntentConfigurableRegistrator { | ... | @@ -78,7 +78,7 @@ public class IntentConfigurableRegistrator { |
78 | @Modified | 78 | @Modified |
79 | public void modified(ComponentContext context) { | 79 | public void modified(ComponentContext context) { |
80 | if (context == null) { | 80 | if (context == null) { |
81 | - log.info("Default config"); | 81 | + log.info("Settings: useFlowObjectives={}", useFlowObjectives); |
82 | return; | 82 | return; |
83 | } | 83 | } |
84 | 84 | ||
... | @@ -93,7 +93,7 @@ public class IntentConfigurableRegistrator { | ... | @@ -93,7 +93,7 @@ public class IntentConfigurableRegistrator { |
93 | if (useFlowObjectives != newFlowObjectives) { | 93 | if (useFlowObjectives != newFlowObjectives) { |
94 | useFlowObjectives = newFlowObjectives; | 94 | useFlowObjectives = newFlowObjectives; |
95 | changeCompilers(); | 95 | changeCompilers(); |
96 | - log.info("Reconfigured use of flow objectives"); | 96 | + log.info("Settings: useFlowObjectives={}", useFlowObjectives); |
97 | } | 97 | } |
98 | } | 98 | } |
99 | 99 | ... | ... |
-
Please register or login to post a comment