mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Suppress some spammed messages
This commit is contained in:
parent
9d8dea81eb
commit
1ff24fe684
@ -55,6 +55,7 @@ function getInitialTree() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function fillHeader(node) {
|
function fillHeader(node) {
|
||||||
|
//console.log("Header");
|
||||||
$("#nodeName").text(node.name);
|
$("#nodeName").text(node.name);
|
||||||
let limit = "";
|
let limit = "";
|
||||||
if (node.max_throughput[0] === 0) {
|
if (node.max_throughput[0] === 0) {
|
||||||
@ -71,7 +72,7 @@ function fillHeader(node) {
|
|||||||
$("#parentLimits").text(limit);
|
$("#parentLimits").text(limit);
|
||||||
$("#parentTpD").html(formatThroughput(node.current_throughput[0] * 8, node.max_throughput[0]));
|
$("#parentTpD").html(formatThroughput(node.current_throughput[0] * 8, node.max_throughput[0]));
|
||||||
$("#parentTpU").html(formatThroughput(node.current_throughput[1] * 8, node.max_throughput[1]));
|
$("#parentTpU").html(formatThroughput(node.current_throughput[1] * 8, node.max_throughput[1]));
|
||||||
console.log(node);
|
//console.log(node);
|
||||||
$("#parentRttD").html(formatRtt(node.rtts[0]));
|
$("#parentRttD").html(formatRtt(node.rtts[0]));
|
||||||
$("#parentRttU").html(formatRtt(node.rtts[1]));
|
$("#parentRttU").html(formatRtt(node.rtts[1]));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user