Skip to content

Commit 1447190

Browse files
authored
Add cache paths to default excludes (#33)
1 parent 91472ec commit 1447190

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Sentry/SentryBundle/DependencyInjection/Configuration.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ public function getConfigTreeBuilder()
5353
->arrayNode('excluded_app_paths')
5454
->prototype('scalar')->end()
5555
->treatNullLike(array())
56-
->defaultValue(array('%kernel.root_dir%/../vendor'))
56+
->defaultValue(array(
57+
'%kernel.root_dir%/../vendor',
58+
'%kernel.root_dir%/../app/cache',
59+
'%kernel.root_dir%/../var/cache',
60+
))
5761
->end()
5862
->end()
5963
;

0 commit comments

Comments
 (0)