File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public function getDSN()
92
92
93
93
public function getPhpProfileSampleRate (): float
94
94
{
95
- return (float ) ($ this ->config ['profiles_sample_rate ' ] ?? 0 );
95
+ return (float ) ($ this ->collectModuleConfig () ['profiles_sample_rate ' ] ?? 0 );
96
96
}
97
97
98
98
/**
@@ -340,12 +340,12 @@ public function isPhpTrackingEnabled(): bool
340
340
341
341
public function isPerformanceTrackingEnabled (): bool
342
342
{
343
- return $ this ->isTracingEnabled () && $ this ->config ['performance_tracking_enabled ' ] ?? false ;
343
+ return $ this ->isTracingEnabled () && $ this ->collectModuleConfig () ['performance_tracking_enabled ' ] ?? false ;
344
344
}
345
345
346
346
public function getPerformanceTrackingExcludedAreas (): array
347
347
{
348
- return $ this ->config ['performance_tracking_excluded_areas ' ] ?? ['adminhtml ' , 'crontab ' ];
348
+ return $ this ->collectModuleConfig () ['performance_tracking_excluded_areas ' ] ?? ['adminhtml ' , 'crontab ' ];
349
349
}
350
350
351
351
/**
You can’t perform that action at this time.
0 commit comments