Skip to content

Commit

Permalink
Log Node load duration and count on DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinherron committed Dec 31, 2024
1 parent bb146a9 commit 368a5d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private void loadNodes() {
TimeUnit.MILLISECONDS.convert(System.nanoTime() - startTime, TimeUnit.NANOSECONDS);
long deltaCount = getNodeManager().getNodes().size() - startCount;

logger.info("Loaded {} nodes in {}ms.", deltaCount, deltaMs);
logger.debug("Loaded {} nodes in {}ms.", deltaCount, deltaMs);
} catch (Exception e) {
logger.error("Error loading nodes.", e);
}
Expand Down

0 comments on commit 368a5d3

Please sign in to comment.