mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 04:13:08 +02:00
fix: http log spam
This commit is contained in:
parent
be7f431746
commit
788f0fee05
@ -124,7 +124,7 @@ module.exports = async client => {
|
||||
: responseTime >= 5
|
||||
? '&e'
|
||||
: '&a') + responseTime + 'ms';
|
||||
const level = req.routerPath.startsWith('/settings') ? 'verbose' : 'info';
|
||||
const level = req.routerPath === '/*' ? 'verbose' : 'info';
|
||||
client.log[level].http(short(`${req.id} ${req.ip} ${req.method} ${req.routerPath ?? '*'} &m-+>&r ${status}&b in ${responseTime}`));
|
||||
if (!req.routerPath) client.log.verbose.http(`${req.id} ${req.method} ${req.url}`);
|
||||
done();
|
||||
|
Loading…
Reference in New Issue
Block a user