remove some logging

This commit is contained in:
MathMan05 2024-11-28 13:16:40 -06:00
parent 8995d0f126
commit d245b645f7
2 changed files with 0 additions and 4 deletions

View file

@ -761,7 +761,6 @@ class Channel extends SnowFlake{
}
}
async getmessage(id: string): Promise<Message>{
console.log("getting:"+id);
const message = this.messages.get(id);
if(message){
return message;
@ -771,7 +770,6 @@ class Channel extends SnowFlake{
{ headers: this.headers }
);
const json = await gety.json();
console.log(json);
return new Message(json[0], this);
}
}