From 1ff24fe684802bf78538b0b64c9c190a25368d82 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Mon, 8 Jul 2024 16:22:19 -0500 Subject: [PATCH] Suppress some spammed messages --- src/rust/lqosd/src/node_manager/js_build/src/tree.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rust/lqosd/src/node_manager/js_build/src/tree.js b/src/rust/lqosd/src/node_manager/js_build/src/tree.js index c0a4754d..ce3de0ba 100644 --- a/src/rust/lqosd/src/node_manager/js_build/src/tree.js +++ b/src/rust/lqosd/src/node_manager/js_build/src/tree.js @@ -55,6 +55,7 @@ function getInitialTree() { } function fillHeader(node) { + //console.log("Header"); $("#nodeName").text(node.name); let limit = ""; if (node.max_throughput[0] === 0) { @@ -71,7 +72,7 @@ function fillHeader(node) { $("#parentLimits").text(limit); $("#parentTpD").html(formatThroughput(node.current_throughput[0] * 8, node.max_throughput[0])); $("#parentTpU").html(formatThroughput(node.current_throughput[1] * 8, node.max_throughput[1])); - console.log(node); + //console.log(node); $("#parentRttD").html(formatRtt(node.rtts[0])); $("#parentRttU").html(formatRtt(node.rtts[1])); }