The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.17.0.
Features
- Auto configure Sentry log channels. (#1042)
Configuring the channel is no longer required. To enable logs for Sentry, the following environment variables
need to be configured:
LOG_CHANNEL=stack
LOG_STACK=single,sentry_logs
SENTRY_ENABLE_LOGS=true
Sentry will use LOG_LEVEL
to determine the minimum log level, but it's possible to overwrite it just for Sentry
using SENTRY_LOG_LEVEL
.
LOG_LEVEL=info
SENTRY_LOG_LEVEL=warning
Misc
- Add
sentry.origin
attribute toLogsHandler
. (#1041)