From 57b0d56efa6594790abdc7a1b61b4827355b5a27 Mon Sep 17 00:00:00 2001 From: Kiran Agrahara Sreenivasa Date: Thu, 10 Jul 2014 06:41:19 -0700 Subject: [PATCH] While the controller is starting up, we see the following info messages which seems redundant. o.o.y.y.d.i.s.tree.InMemoryDataTree - Attempting to install schema context SchemaContextImpl I've moved the details about the schema contexts to a debug message. Change-Id: I9b9425449d1f679fc080d5b33d96e2d865c25973 Signed-off-by: Kiran Agrahara Sreenivasa --- .../yangtools/yang/data/impl/schema/tree/InMemoryDataTree.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/InMemoryDataTree.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/InMemoryDataTree.java index 42ef2023f2..3b24f6e7a9 100644 --- a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/InMemoryDataTree.java +++ b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/InMemoryDataTree.java @@ -48,7 +48,8 @@ final class InMemoryDataTree implements DataTree { public synchronized void setSchemaContext(final SchemaContext newSchemaContext) { Preconditions.checkNotNull(newSchemaContext); - LOG.info("Attempting to install schema context {}", newSchemaContext); + LOG.info("Attempting to install schema contexts"); + LOG.debug("Following schema contexts will be attempted {}",newSchemaContext); /* * FIXME: we should walk the schema contexts, both current and new and see -- 2.36.6