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) /var/www/html/wincloud_gateway/node_modules/strapi/lib/middlewares/logger/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict';
const chalk = require('chalk');
const _ = require('lodash');
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;
const logLevels = Object.keys(strapi.log.levels.values);
if (!_.includes(logLevels, level)) {
throw new Error(
"Invalid log level set in middleware configuration. Accepted values are: '" +
logLevels.join("', '") +
"'."
);
}
strapi.log.level = level;
if (exposeInContext) {
strapi.app.context.log = strapi.log;
}
const isLogLevelEnvVariableSet = _.isString(process.env.STRAPI_LOG_LEVEL);
if (isLogLevelEnvVariableSet && strapi.log.levelVal <= 20) {
strapi.log.debug(
`STRAPI_LOG_LEVEL environment variable is overridden by logger middleware. It only applies outside Strapi's middleware context.`
);
}
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.0633 ]-- |