get rid of eccesive loggin

This commit is contained in:
MathMan05 2024-09-03 11:06:30 -05:00
parent e3086efb82
commit 66a13c3407
10 changed files with 0 additions and 34 deletions

View file

@ -556,7 +556,6 @@ class Localuser {
channels.innerHTML = "";
const html = guild.getHTML();
channels.appendChild(html);
console.log("found :3", html);
return guild;
}
buildservers() {
@ -1377,7 +1376,6 @@ class Localuser {
this.presences.set(thing.user.id, thing);
}
}
console.log(chunk);
chunk.members ??= [];
const arr = this.noncebuild.get(chunk.nonce);
if (!arr)
@ -1388,7 +1386,6 @@ class Localuser {
}
arr[2].push(chunk.chunk_index);
if (arr[2].length === chunk.chunk_count) {
console.log("got through");
this.noncebuild.delete(chunk.nonce);
const func = this.noncemap.get(chunk.nonce);
if (!func)
@ -1460,7 +1457,6 @@ class Localuser {
}
func(undefined);
value.delete(thing);
console.log("failed");
}
}
this.fetchingmembers.delete(guildid);