While the controller is starting up, we see the following info messages which seems... 12/8912/1
authorKiran Agrahara Sreenivasa <kkoushik@brocade.com>
Thu, 10 Jul 2014 13:41:19 +0000 (06:41 -0700)
committerKiran Agrahara Sreenivasa <kkoushik@brocade.com>
Thu, 10 Jul 2014 13:41:19 +0000 (06:41 -0700)
o.o.y.y.d.i.s.tree.InMemoryDataTree - Attempting to install schema context SchemaContextImpl<snip>

I've moved the details about the schema contexts to a debug message.

Change-Id: I9b9425449d1f679fc080d5b33d96e2d865c25973
Signed-off-by: Kiran Agrahara Sreenivasa <kkoushik@brocade.com>
yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/InMemoryDataTree.java

index 42ef2023f2ff0a6594a79367883d739e38d85e5d..3b24f6e7a9f99fcccbd297a1599d21b892f8a6cc 100644 (file)
@@ -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