diff --git a/api/config/config.php b/api/config/config.php index 5f41f0a..68e83c2 100644 --- a/api/config/config.php +++ b/api/config/config.php @@ -22,7 +22,7 @@ return [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ - 'class' => mito\sentry\SentryTarget::class, + 'class' => mito\sentry\Target::class, 'levels' => ['error', 'warning'], 'except' => [ 'legacy-authserver', diff --git a/common/config/config.php b/common/config/config.php index c06cd2a..2284c57 100644 --- a/common/config/config.php +++ b/common/config/config.php @@ -35,7 +35,7 @@ return [ ], ], 'sentry' => [ - 'class' => mito\sentry\SentryComponent::class, + 'class' => mito\sentry\Component::class, 'enabled' => !empty(getenv('SENTRY_DSN')), 'dsn' => getenv('SENTRY_DSN'), 'environment' => YII_ENV_DEV ? 'development' : 'production', diff --git a/composer.json b/composer.json index bfbef87..bc4c8b4 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "ely/amqp-controller": "dev-master#d7f8cdbc66c45e477c9c7d5d509bc0c1b11fd3ec", "ely/email-renderer": "dev-master#38a148cd5081147acc31125ddc49966b149f65cf", "predis/predis": "^1.0", - "mito/yii2-sentry": "dev-1.0.0-dev#193b96880d30e9d3b616652a5abb3c4f28e14f2c" + "mito/yii2-sentry": "dev-1.0.0-dev#e34bcdf5475310a66a6c94899ca62c9e9aa2bf8d" }, "require-dev": { "yiisoft/yii2-codeception": "*", diff --git a/console/config/config.php b/console/config/config.php index 2a8e775..748acc4 100644 --- a/console/config/config.php +++ b/console/config/config.php @@ -14,7 +14,7 @@ return [ 'log' => [ 'targets' => [ [ - 'class' => mito\sentry\SentryTarget::class, + 'class' => mito\sentry\Target::class, 'levels' => ['error', 'warning'], ], [