mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
[Server] Better debug message
This commit is contained in:
parent
9395964814
commit
0029c72b2f
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ export default (endpoint: IEndpoint, ctx: IAuthContext) => new Promise((ok, reje
|
|||
return reject('ERR');
|
||||
}
|
||||
|
||||
log(`min remaining: ${info.remaining}`);
|
||||
log(`@${ctx.user.username} ${endpoint.name} min remaining: ${info.remaining}`);
|
||||
|
||||
if (info.remaining === 0) {
|
||||
reject('BRIEF_REQUEST_INTERVAL');
|
||||
|
@ -68,7 +68,7 @@ export default (endpoint: IEndpoint, ctx: IAuthContext) => new Promise((ok, reje
|
|||
return reject('ERR');
|
||||
}
|
||||
|
||||
log(`max remaining: ${info.remaining}`);
|
||||
log(`@${ctx.user.username} ${endpoint.name} max remaining: ${info.remaining}`);
|
||||
|
||||
if (info.remaining === 0) {
|
||||
reject('RATE_LIMIT_EXCEEDED');
|
||||
|
|
Loading…
Reference in a new issue