Reduce logging

This commit is contained in:
Yeicor
2024-03-28 23:26:00 +01:00
parent 162d3e22a2
commit 856ffbc4c5
3 changed files with 19 additions and 19 deletions

View File

@@ -93,7 +93,7 @@ export class NetworkManager extends EventTarget {
private foundModel(name: string, hash: string | null, url: string, isRemove: boolean | null, disconnect: () => void = () => {
}) {
console.debug("Found model", name, "with hash", hash, "at", url, "isRemove", isRemove);
// console.debug("Found model", name, "with hash", hash, "at", url, "isRemove", isRemove);
// We only care about the latest update per model name
this.bufferedUpdates = this.bufferedUpdates.filter(m => m.name !== name);