remove exesive logging
This commit is contained in:
parent
3652acaf28
commit
9748ce2372
2 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ class Member {
|
||||||
}
|
}
|
||||||
return memb;
|
return memb;
|
||||||
}
|
}
|
||||||
guild.localuser.resolvemember(id.id, guild.id).then(console.log);
|
guild.localuser.resolvemember(id.id, guild.id);
|
||||||
const prom1 = fetch(guild.info.api.toString() + "/users/" + id + "/profile?with_mutual_guilds=true&with_mutual_friends_count=true&guild_id=" + guild.snowflake, { headers: guild.headers });
|
const prom1 = fetch(guild.info.api.toString() + "/users/" + id + "/profile?with_mutual_guilds=true&with_mutual_friends_count=true&guild_id=" + guild.snowflake, { headers: guild.headers });
|
||||||
prom1.catch(_ => { console.log(_); });
|
prom1.catch(_ => { console.log(_); });
|
||||||
const promoise = prom1.then(_ => _.json()).then(json => {
|
const promoise = prom1.then(_ => _.json()).then(json => {
|
||||||
|
|
|
@ -92,7 +92,7 @@ class Member{
|
||||||
}
|
}
|
||||||
return memb;
|
return memb;
|
||||||
}
|
}
|
||||||
guild.localuser.resolvemember(id.id,guild.id).then(console.log);
|
guild.localuser.resolvemember(id.id,guild.id);
|
||||||
const prom1= fetch(guild.info.api.toString()+"/users/"+id+"/profile?with_mutual_guilds=true&with_mutual_friends_count=true&guild_id="+guild.snowflake,{headers:guild.headers})
|
const prom1= fetch(guild.info.api.toString()+"/users/"+id+"/profile?with_mutual_guilds=true&with_mutual_friends_count=true&guild_id="+guild.snowflake,{headers:guild.headers})
|
||||||
prom1.catch(_=>{console.log(_)})
|
prom1.catch(_=>{console.log(_)})
|
||||||
const promoise=prom1.then(_=>_.json()).then(json=>{
|
const promoise=prom1.then(_=>_.json()).then(json=>{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue