UNPKG

tennotv

Version:

Warframe YouTube Content

11 lines (9 loc) 312 B
const catchAll = ({ router, logger, sums, ravenDSN, }) => { router.get('*', (req, res) => { logger.log('warn', `ABNORMAL ${req.method} REQUEST for ${req.originalUrl} from ${req.connection.remoteAddress}`); res.render('404', {title: '404 Error', sums, ravenDSN}); }); }; module.exports = catchAll;