1
0
Fork 0
master
Matthew 2021-08-09 14:18:40 -04:00
parent 647e3be766
commit f07d155d96
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 152 additions and 152 deletions

View File

@ -36,7 +36,7 @@ export default class Route {
public init(): void {
this.router.all('*', (req, res, next) => {
this.server.client.signale.log(`'${req.method}' request from '${req.ip}' to '${req.hostname}${req.path}'.`);
// this.server.client.signale.log(`'${req.method}' request from '${req.ip}' to '${req.hostname}${req.path}'.`);
if (this.conf.maintenance === true) res.status(503).json({ code: this.constants.codes.MAINTENANCE_OR_UNAVAILABLE, message: this.constants.messages.MAINTENANCE_OR_UNAVAILABLE });
else if (this.conf.deprecated === true) res.status(501).json({ code: this.constants.codes.DEPRECATED, message: this.constants.messages.DEPRECATED });
else next();