PHP 5.3 compatibility fix for my Sentry code
This commit is contained in:
parent
4f4aba172b
commit
147ded498b
|
@ -101,7 +101,8 @@ class SentryLogger
|
||||||
private static function getTags()
|
private static function getTags()
|
||||||
{
|
{
|
||||||
$tags = array();
|
$tags = array();
|
||||||
$tags['Development Environment'] = Config::getConfig()["dev_env"];
|
$config = Config::getConfig();
|
||||||
|
$tags['Development Environment'] = $config["dev_env"];
|
||||||
return $tags;
|
return $tags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue