1
我已閱讀了一些文檔here,但仍不清楚如何編寫和使用自定義Monolog處理程序和通道。讓我稍微解釋一下我想達到的目標。我有一個自定義函數,我希望該日誌被記錄到一個名爲custom.log
的文件中。如何編寫和使用Monolog處理程序和通道
monolog:
handlers:
#Logs Doctrine to a different channel
doctrine:
level: debug
type: stream
path: "%kernel.logs_dir%/doctrine.log"
channels: [doctrine]
如何實現一個custom.log
相同的:我已經在config.yml
文件中設置啓用此功能主義日誌記錄到另一個文件?