diff --git a/config/sentry.php b/config/sentry.php index 7e9cf969..44f83e52 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -10,6 +10,9 @@ // @see https://docs.sentry.io/product/sentry-basics/dsn-explainer/ 'dsn' => env('SENTRY_LARAVEL_DSN', env('SENTRY_DSN')), + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#logger + // 'logger' => Sentry\Logger\DebugFileLogger::class, // By default this will log to `storage_path('logs/sentry.log')` + // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) 'release' => env('SENTRY_RELEASE'), diff --git a/src/Sentry/Laravel/ServiceProvider.php b/src/Sentry/Laravel/ServiceProvider.php index 424cd74d..a7e93047 100644 --- a/src/Sentry/Laravel/ServiceProvider.php +++ b/src/Sentry/Laravel/ServiceProvider.php @@ -25,6 +25,7 @@ use Sentry\Laravel\Http\SetRequestMiddleware; use Sentry\Laravel\Tracing\BacktraceHelper; use Sentry\Laravel\Tracing\ServiceProvider as TracingServiceProvider; +use Sentry\Logger\DebugFileLogger; use Sentry\SentrySdk; use Sentry\Serializer\RepresentationSerializer; use Sentry\State\Hub; @@ -50,6 +51,13 @@ class ServiceProvider extends BaseServiceProvider 'controllers_base_namespace', ]; + /** + * List of options that should be resolved from the container instead of being passed directly to the SDK. + */ + protected const OPTIONS_TO_RESOLVE_FROM_CONTAINER = [ + 'logger', + ]; + /** * List of features that are provided by the SDK. */ @@ -116,6 +124,10 @@ public function register(): void $this->mergeConfigFrom(__DIR__ . '/../../../config/sentry.php', static::$abstract); + $this->app->singleton(DebugFileLogger::class, function () { + return new DebugFileLogger(storage_path('logs/sentry.log')); + }); + $this->configureAndRegisterClient(); $this->registerFeatures(); @@ -274,6 +286,12 @@ protected function configureAndRegisterClient(): void $options['before_send_transaction'] = $wrapBeforeSend($options['before_send_transaction'] ?? null); } + foreach (self::OPTIONS_TO_RESOLVE_FROM_CONTAINER as $option) { + if (isset($options[$option]) && is_string($options[$option])) { + $options[$option] = $this->app->make($options[$option]); + } + } + $clientBuilder = ClientBuilder::create($options); // Set the Laravel SDK identifier and version diff --git a/test/Sentry/Laravel/LaravelContainerConfigOptionsTest.php b/test/Sentry/Laravel/LaravelContainerConfigOptionsTest.php new file mode 100644 index 00000000..94037e14 --- /dev/null +++ b/test/Sentry/Laravel/LaravelContainerConfigOptionsTest.php @@ -0,0 +1,28 @@ +getClient()->getOptions()->getLogger(); + + $this->assertNull($logger); + } + + public function testLoggerIsResolvedFromDefaultSingleton(): void + { + $this->resetApplicationWithConfig([ + 'sentry.logger' => DebugFileLogger::class, + ]); + + $logger = app(HubInterface::class)->getClient()->getOptions()->getLogger(); + + $this->assertInstanceOf(DebugFileLogger::class, $logger); + } +} diff --git a/test/Sentry/Laravel/LaravelIntegrationsOptionTest.php b/test/Sentry/Laravel/LaravelIntegrationsConfigOptionTest.php similarity index 98% rename from test/Sentry/Laravel/LaravelIntegrationsOptionTest.php rename to test/Sentry/Laravel/LaravelIntegrationsConfigOptionTest.php index 59571ebe..d604d5c6 100644 --- a/test/Sentry/Laravel/LaravelIntegrationsOptionTest.php +++ b/test/Sentry/Laravel/LaravelIntegrationsConfigOptionTest.php @@ -10,7 +10,7 @@ use Sentry\Integration\FatalErrorListenerIntegration; use Sentry\Laravel\Tests\TestCase; -class LaravelIntegrationsOptionTest extends TestCase +class LaravelIntegrationsConfigOptionTest extends TestCase { protected function defineEnvironment($app): void {