У меня проблемы со входом в Slackwebhookhandler Symfony через монолог. Весь мой файл monolog.yaml приведен ниже. Что мне больше всего не нравится, так это то, что я даже нигде не вижу сообщений об ошибках о том, как я испортил конфигурационный файл yaml — он просто молча терпит неудачу. Что я делаю не так, чтобы не получать сообщений об ошибках и не иметь возможности войти в свой слабый веб-хук?
monolog:
channels:
- deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
channels: ["!doctrine"]
formatter: App\Logging\ConciseLineFormatter
streamout:
type: stream
path: php://stdout
level: debug
channels: ["!doctrine"]
formatter: App\Logging\ConciseLineFormatter
slack:
type: slackwebhook
level: debug
channel: "#notifications-test"
webhook_url: "https://hooks.slack.com/services/"
Подробнее здесь: https://stackoverflow.com/questions/784 ... ookhandler