mirror of
https://github.com/Lightcord/Lightcord.git
synced 2025-04-12 00:55:40 +02:00
log less useless informations
This commit is contained in:
parent
dee3b934c6
commit
20b3d1448f
File diff suppressed because one or more lines are too long
@ -83,7 +83,7 @@ export default new class DistantServer {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
const responseBody = await res.json()
|
const responseBody = await res.json()
|
||||||
console.log(responseBody)
|
|
||||||
for(let user of responseBody){
|
for(let user of responseBody){
|
||||||
let promise = users.find(promise => promise[0] === user.user_id)
|
let promise = users.find(promise => promise[0] === user.user_id)
|
||||||
promise[1](user.badges)
|
promise[1](user.badges)
|
||||||
@ -116,10 +116,8 @@ export default new class DistantServer {
|
|||||||
|
|
||||||
const handleRequest = function(route, method, data){
|
const handleRequest = function(route, method, data){
|
||||||
if(!settingsCookie["lightcord-5"]){
|
if(!settingsCookie["lightcord-5"]){
|
||||||
console.warn(`Canceling request on ${route} with method ${method} and body`, data, "because of settings.")
|
|
||||||
return Promise.reject(new LightcordError("The current settings blocked the request."))
|
return Promise.reject(new LightcordError("The current settings blocked the request."))
|
||||||
}
|
}
|
||||||
console.log(`Sending request on ${route} with method ${method} and body`, data)
|
|
||||||
return nodeFetch(`${Constants.SERVER_URL}/api/v1${route}`, {
|
return nodeFetch(`${Constants.SERVER_URL}/api/v1${route}`, {
|
||||||
method,
|
method,
|
||||||
headers: {
|
headers: {
|
||||||
@ -136,7 +134,6 @@ class LightcordError extends Error {
|
|||||||
constructor(){
|
constructor(){
|
||||||
super(...arguments)
|
super(...arguments)
|
||||||
this.name = "LightcordError"
|
this.name = "LightcordError"
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user