Skip to content

Commit

Permalink
Merge pull request #690 from bugsnag/v7-breadcrumb-limit
Browse files Browse the repository at this point in the history
V7: Tweak maxBreadcrumbs default/limit
  • Loading branch information
bengourley committed Jan 3, 2020
2 parents 3b2a90f + 690d52d commit 05ca688
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ module.exports.schema = {
validate: value => typeof value === 'string' && value.length
},
maxBreadcrumbs: {
defaultValue: () => 20,
message: 'should be a number ≤40',
validate: value => intRange(0, 40)(value)
defaultValue: () => 25,
message: 'should be a number ≤100',
validate: value => intRange(0, 100)(value)
},
enabledBreadcrumbTypes: {
defaultValue: () => BREADCRUMB_TYPES,
Expand Down

0 comments on commit 05ca688

Please sign in to comment.