是否可以将在UI中看到的trapi错误消息重定向到stdout?

时间:2020-02-26 14:22:30

标签: strapi

我正在使用 Strapi v3.0.0-beta.18.7 用户界面,并且部分显示了该用户界面中的错误,因此无法读取错误消息的全文。

1 个答案:

答案 0 :(得分:0)

我建议使用自定义中间件来管理您的需求。

以下是创建中间件的文档-https://strapi.io/documentation/3.0.0-beta.x/concepts/middlewares.html

第1步:创建中间件

路径-middlewares/log/index.js

module.exports = strapi => {
  return {
    initialize() {
      strapi.app.use(async (ctx, next) => {
        await next();

        const status = ctx.status;

        if (status < 200 || status >= 300) {
          console.log(ctx.body);
        }
      });
    },
  };
};

第2步:启用中间件

路径-config/environments/development/middleware.json

{
  "log": {
    "enabled": true
  }
}

步骤3:以正确的顺序设置中间件

路径-config/middleware.json

{
  "timeout": 100,
  "load": {
    "before": [
      "log",
      "responseTime",
      "logger",
      "cors",
      "responses",
      "gzip"
    ],
    "order": [
      "Define the middlewares' load order by putting their name in this array is the right order"
    ],
    "after": [
      "parser",
      "router"
    ]
  }
}