Updated Branches: refs/heads/master 42605bb5d -> e5b4b7d8d
Changed complete topology publishing log to debug in cloud controller Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/673a792d Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/673a792d Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/673a792d Branch: refs/heads/master Commit: 673a792dcdca64263448207b6040846177360250 Parents: cf538d0 Author: Imesh Gunaratne <[email protected]> Authored: Thu Dec 12 14:41:51 2013 +0530 Committer: Imesh Gunaratne <[email protected]> Committed: Thu Dec 12 14:41:51 2013 +0530 ---------------------------------------------------------------------- .../stratos/cloud/controller/topology/TopologyEventSender.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/673a792d/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/topology/TopologyEventSender.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/topology/TopologyEventSender.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/topology/TopologyEventSender.java index 969a1f1..49ecb2c 100644 --- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/topology/TopologyEventSender.java +++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/topology/TopologyEventSender.java @@ -143,8 +143,8 @@ public class TopologyEventSender { public static void sendCompleteTopologyEvent(Topology topology) { CompleteTopologyEvent completeTopologyEvent = new CompleteTopologyEvent(topology); - if(log.isInfoEnabled()) { - log.info(String.format("Publishing complete topology event")); + if(log.isDebugEnabled()) { + log.debug(String.format("Publishing complete topology event")); } publishEvent(completeTopologyEvent); }
