Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/strapi/lib/middlewares/logger/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict';
const chalk = require('chalk');
const codeToColor = code => {
return code >= 500
? chalk.red(code)
: code >= 400
? chalk.yellow(code)
: code >= 300
? chalk.cyan(code)
: code >= 200
? chalk.green(code)
: code;
};
/**
* Logger hook
*/
module.exports = strapi => {
return {
/**
* Initialize the hook
*/
initialize() {
const { level, exposeInContext, requests } = strapi.config.middleware.settings.logger;
if (level) {
strapi.log.level = level;
}
if (exposeInContext) {
strapi.app.context.log = strapi.log;
}
if (requests && strapi.log.levelVal <= 20) {
strapi.app.use(async (ctx, next) => {
const start = Date.now();
await next();
const delta = Math.ceil(Date.now() - start);
strapi.log.debug(`${ctx.method} ${ctx.url} (${delta} ms) ${codeToColor(ctx.status)}`);
});
}
},
};
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0052 ]-- |