我对 Express Gateway 日志有以下问题:
- 我根据他们的文档启用了 Express Gateway 日志,但我找不到在我的网关根目录下创建的任何日志文件。
当我使用以下命令启动网关时,它会显示调试日志,但我在 gateway.config.yml 配置中所做的更改不会反映在调试日志中。
LOG_LEVEL=debug npm start
如何为日志条目添加时间戳?
编辑:
gateway.config.yml 配置值:
pipelines:
default:
apiEndpoints:
- api
policies:
- log: # policy name
- action: # array of condition/actions objects
#timestamp: true
message: Test ${req.method} ${req.originalUrl} # parameter for log action
# Uncomment
密钥认证:when instructed to in the Getting Started guide.
- key-auth:
- proxy:
- action:
serviceEndpoint: httpbin
changeOrigin: true