commit | 0b69a82256aa86dc0ce381a60b7c524ad13589c1 | [log] [tgz] |
---|---|---|
author | Yuta HIGUCHI <y-higuchi@onlab.us> | Sun Nov 16 22:46:07 2014 -0800 |
committer | Yuta HIGUCHI <y-higuchi@onlab.us> | Mon Nov 17 01:01:01 2014 -0800 |
tree | c6ade2aac96072ab97a167e3fad677d3038a26af | |
parent | 8257f4ce29fe91761d8fac022df66294cab48f96 [diff] |
DatabaseStateMachine: lower log level Change-Id: Ied0c18ab498bf499d3e54aa170097ed4304368cb
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseStateMachine.java b/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseStateMachine.java index 66a8a0c..5958bb7 100644 --- a/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseStateMachine.java +++ b/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseStateMachine.java
@@ -275,7 +275,7 @@ // notify listeners of table mod events. for (DatabaseUpdateEventListener listener : listeners) { for (TableModificationEvent tableModificationEvent : tableModificationEvents) { - log.info("Publishing table modification event: {}", tableModificationEvent); + log.trace("Publishing table modification event: {}", tableModificationEvent); listener.tableModified(tableModificationEvent); } }