Get rid of exesive logging

This commit is contained in:
MathMan05 2024-08-20 16:20:12 -05:00
parent 3952698d31
commit 0a1b574f2a
12 changed files with 0 additions and 32 deletions

View file

@ -121,7 +121,6 @@ class Guild {
this.headchannels = [];
for (const thing of this.channels) {
const parent = thing.resolveparent(this);
console.log(parent, ":3");
if (!parent) {
this.headchannels.push(thing);
}
@ -359,13 +358,11 @@ class Guild {
}
}
getHTML() {
console.log("found :3", this.headchannels);
//this.printServers();
this.sortchannels();
this.printServers();
const build = document.createElement("div");
for (const thing of this.headchannels) {
console.log("found :3");
build.appendChild(thing.createguildHTML(this.isAdmin()));
}
return build;