diff --git a/airtime_mvc/application/logging/SentryLogging.php b/airtime_mvc/application/logging/SentryLogging.php index e3c87b700..06ae7a9cc 100644 --- a/airtime_mvc/application/logging/SentryLogging.php +++ b/airtime_mvc/application/logging/SentryLogging.php @@ -101,7 +101,8 @@ class SentryLogger private static function getTags() { $tags = array(); - $tags['Development Environment'] = Config::getConfig()["dev_env"]; + $config = Config::getConfig(); + $tags['Development Environment'] = $config["dev_env"]; return $tags; }