Brian O'Connor

Adding trace logging to IntentManger

Change-Id: I6cd55521484f52223de5cec563f13b61d97ae4a9
......@@ -501,6 +501,14 @@ public class IntentManager
}
});
if (log.isTraceEnabled()) {
log.trace("applying intent {} -> {} with {} rules: {}",
toUninstall.isPresent() ? toUninstall.get().key() : "<empty>",
toInstall.isPresent() ? toInstall.get().key() : "<empty>",
operations.stages().stream().mapToLong(i -> i.size()).sum(),
operations.stages());
}
flowRuleService.apply(operations);
}
......