Skip to content

Commit 368a5d3

Browse files
committed
Log Node load duration and count on DEBUG
1 parent bb146a9 commit 368a5d3

File tree

1 file changed

+1
-1
lines changed
  • opc-ua-sdk/sdk-server/src/main/java/org/eclipse/milo/opcua/sdk/server/namespaces

1 file changed

+1
-1
lines changed

opc-ua-sdk/sdk-server/src/main/java/org/eclipse/milo/opcua/sdk/server/namespaces/OpcUaNamespace.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ private void loadNodes() {
155155
TimeUnit.MILLISECONDS.convert(System.nanoTime() - startTime, TimeUnit.NANOSECONDS);
156156
long deltaCount = getNodeManager().getNodes().size() - startCount;
157157

158-
logger.info("Loaded {} nodes in {}ms.", deltaCount, deltaMs);
158+
logger.debug("Loaded {} nodes in {}ms.", deltaCount, deltaMs);
159159
} catch (Exception e) {
160160
logger.error("Error loading nodes.", e);
161161
}

0 commit comments

Comments
 (0)