作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
W 有 web-app,用 symfony-flex 构建。对于部署,我正在使用 capistrano .为了记录关键日志,我以这种方式配置了 monolog:
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
channels: ['!translation']
excluded_http_codes: [{ 404: ['^/security/login'] }]
handler: grouped
grouped:
type: group
members: [deduplicated]
deduplicated:
type: deduplication
handler: swift
swift:
type: swift_mailer
from_email: '%mailer_user%'
to_email: ['email1@gmail.com', 'email2@gmail.com']
subject: "📞🚨 %%level_name%% %%level%%"
level: info
formatter: monolog.formatter.html
content_type: text/html
swiftmailer:
url: '%env(MAILER_URL)%'
spool: { type: 'memory' }
最佳答案
deduplication
的 MonologBundle 配置处理程序类型具有额外的潜在参数 - 包括
store
: The file/path where the deduplication log should be kept, defaults to %kernel.cache_dir%/monolog_dedup_*
set :linked_dirs, [fetch(:log_path)]
- 仅共享日志以保持长期更新。缓存目录仍在 ./var/cache 中,但它是在每次部署时新创建的。
关于symfony - monolog 发送旧日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52200810/
我是一名优秀的程序员,十分优秀!