Lower NamespaceStorageSupport logging 22/94022/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 4 Dec 2020 10:20:28 +0000 (11:20 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 4 Dec 2020 10:20:28 +0000 (11:20 +0100)
We really do not need to flood tests with information about namespaces
being swept, silence those logs.

Change-Id: Ie4bd751851e8c3cb458c348e0cad30fd1be9037a
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-parser-reactor/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/reactor/NamespaceStorageSupport.java

index 45fae8c56db8e366f8d763b4b379f16aed5a251a..e6aef831e19f38f9897d321ca5b88109f3436524 100644 (file)
@@ -141,7 +141,7 @@ abstract class NamespaceStorageSupport implements NamespaceStorageNode {
 
     void sweepNamespaces() {
         namespaces = null;
-        LOG.debug("Swept namespace storages of {}", this);
+        LOG.trace("Swept namespace storages of {}", this);
     }
 
     void sweepNamespaces(final Map<Class<?>, SweptNamespace> toWipe) {
@@ -157,7 +157,7 @@ abstract class NamespaceStorageSupport implements NamespaceStorageNode {
         }
 
         namespaces.putAll(toWipe);
-        LOG.debug("Trimmed namespace storages of {} to {}", this, namespaces.keySet());
+        LOG.trace("Trimmed namespace storages of {} to {}", this, namespaces.keySet());
     }
 
     private Map<Class<?>, Map<?, ?>> accessNamespaces() {