This commit is contained in:
Cüneyt Şentürk
2022-11-22 15:00:33 +03:00
parent fba6ff7318
commit 87999ed564
4 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ class Bugsnag
{
app('bugsnag')->setAppVersion(version('short'));
$tags = self::getTrackerTags();
$tags = static::getTrackerTags();
app('bugsnag')->registerCallback(function ($report) use($tags) {
$report->setMetaData([

View File

@@ -16,7 +16,7 @@ class Sentry
{
$event->setRelease(version('short'));
$tags = self::getTrackerTags();
$tags = static::getTrackerTags();
$event->setTags($tags);