-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
Description
I'm using MonologBundle to include stacktraces in logs. It works for StreamHandler, but not for Slack.
monolog:
handlers:
main:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: error
include_stacktraces: true
slack:
type: slack
token: xxx
channel: "#errors"
bot_name: ErrorBot
icon_emoji: :ghost:
level: critical
include_stacktraces: true
bjornpost and gmponos