Skip to content

Commit

Permalink
fix: user_context default tracking to false (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT authored Apr 30, 2018
1 parent a360980 commit e7f9c37
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
-----

- Improved default app_path for Lumen to include entire application code, excluding vendor. (#128)
- Set 'user_context' configuration default to false.

0.8.0
-----
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ return array(
'breadcrumbs.sql_bindings' => true,

// Capture default user context
'user_context' => true,
'user_context' => false,
);
```

Expand Down
2 changes: 1 addition & 1 deletion examples/laravel-5.4/config/sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'breadcrumbs.sql_bindings' => true,

// Capture default user context
'user_context' => true,
'user_context' => false,

'release' => '1.0',
);
2 changes: 1 addition & 1 deletion examples/laravel-5.5/config/sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
'breadcrumbs.sql_bindings' => true,

// Capture default user context
'user_context' => true,
'user_context' => false,
);
2 changes: 1 addition & 1 deletion src/Sentry/SentryLaravel/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
'breadcrumbs.sql_bindings' => true,

// Capture default user context
'user_context' => true,
'user_context' => false,
);

0 comments on commit e7f9c37

Please sign in to comment.