We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947b675 commit e4091faCopy full SHA for e4091fa
src/Sentry/Laravel/Features/LogIntegration.php
@@ -15,11 +15,11 @@ public function isApplicable(): bool
15
16
public function register(): void
17
{
18
- Log::extend('sentry', static function ($app, array $config) {
+ Log::extend('sentry', function ($app, array $config) {
19
return (new LogChannel($app))($config);
20
});
21
22
- Log::extend('sentry_logs', static function ($app, array $config) {
+ Log::extend('sentry_logs', function ($app, array $config) {
23
return (new LogsLogChannel($app))($config);
24
25
}
0 commit comments