mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Increase sentry maxValueLength (#111)
This commit is contained in:
parent
dcb996ea9a
commit
012b2b1cc5
2 changed files with 10 additions and 0 deletions
|
|
@ -12,6 +12,10 @@ Sentry.init({
|
|||
debug: false,
|
||||
replaysSessionSampleRate: 0.1,
|
||||
replaysOnErrorSampleRate: 1.0,
|
||||
|
||||
// Increase max length for messages to prevent truncation (default is 250)
|
||||
maxValueLength: 8192,
|
||||
|
||||
integrations: [
|
||||
Sentry.replayIntegration({
|
||||
maskAllText: true,
|
||||
|
|
|
|||
|
|
@ -17,6 +17,9 @@ export async function register() {
|
|||
|
||||
// Setting this option to true will print useful information to the console while you're setting up Sentry.
|
||||
debug: false,
|
||||
|
||||
// Increase max length for messages to prevent truncation (default is 250)
|
||||
maxValueLength: 8192,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -35,6 +38,9 @@ export async function register() {
|
|||
|
||||
// Setting this option to true will print useful information to the console while you're setting up Sentry.
|
||||
debug: false,
|
||||
|
||||
// Increase max length for messages to prevent truncation (default is 250)
|
||||
maxValueLength: 8192,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue