aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-06-05 14:41:42 +0200
committerGitHub <noreply@github.com>2019-06-05 14:41:42 +0200
commit7e5b7e029a5ba7aadc8128243afaa00e2a870645 (patch)
tree51dd4687e5a76d0fa036c9e65c7416001afd6c50 /app
parent4fa63260e4e50fa6a54b88dc2a6658bddb05789b (diff)
parent955a3bde172244cc244860f2de571f12d3693707 (diff)
downloadwallabag-7e5b7e029a5ba7aadc8128243afaa00e2a870645.tar.gz
wallabag-7e5b7e029a5ba7aadc8128243afaa00e2a870645.tar.zst
wallabag-7e5b7e029a5ba7aadc8128243afaa00e2a870645.zip
Merge pull request #3990 from wallabag/feature/sentry
Add Sentry support
Diffstat (limited to 'app')
-rw-r--r--app/AppKernel.php1
-rw-r--r--app/config/config_prod.yml3
-rw-r--r--app/config/parameters.yml.dist3
3 files changed, 7 insertions, 0 deletions
diff --git a/app/AppKernel.php b/app/AppKernel.php
index 4a54da29..fcf929c6 100644
--- a/app/AppKernel.php
+++ b/app/AppKernel.php
@@ -35,6 +35,7 @@ class AppKernel extends Kernel
35 new BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle(), 35 new BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle(),
36 new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(), 36 new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(),
37 new Http\HttplugBundle\HttplugBundle(), 37 new Http\HttplugBundle\HttplugBundle(),
38 new Sentry\SentryBundle\SentryBundle(),
38 39
39 // wallabag bundles 40 // wallabag bundles
40 new Wallabag\CoreBundle\WallabagCoreBundle(), 41 new Wallabag\CoreBundle\WallabagCoreBundle(),
diff --git a/app/config/config_prod.yml b/app/config/config_prod.yml
index 44e29aac..59d2e9e2 100644
--- a/app/config/config_prod.yml
+++ b/app/config/config_prod.yml
@@ -23,3 +23,6 @@ monolog:
23 level: debug 23 level: debug
24 console: 24 console:
25 type: console 25 type: console
26
27sentry:
28 dsn: "%sentry_dsn%"
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist
index 0e7b9823..9948fa46 100644
--- a/app/config/parameters.yml.dist
+++ b/app/config/parameters.yml.dist
@@ -63,3 +63,6 @@ parameters:
63 redis_port: 6379 63 redis_port: 6379
64 redis_path: null 64 redis_path: null
65 redis_password: null 65 redis_password: null
66
67 # sentry logging
68 sentry_dsn: ~