File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ Sentry.init({
1212 debug : false ,
1313 replaysSessionSampleRate : 0.1 ,
1414 replaysOnErrorSampleRate : 1.0 ,
15+
16+ // Increase max length for messages to prevent truncation (default is 250)
17+ maxValueLength : 8192 ,
18+
1519 integrations : [
1620 Sentry . replayIntegration ( {
1721 maskAllText : true ,
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ export async function register() {
1717
1818 // Setting this option to true will print useful information to the console while you're setting up Sentry.
1919 debug : false ,
20+
21+ // Increase max length for messages to prevent truncation (default is 250)
22+ maxValueLength : 8192 ,
2023 } ) ;
2124 }
2225
@@ -35,6 +38,9 @@ export async function register() {
3538
3639 // Setting this option to true will print useful information to the console while you're setting up Sentry.
3740 debug : false ,
41+
42+ // Increase max length for messages to prevent truncation (default is 250)
43+ maxValueLength : 8192 ,
3844 } ) ;
3945 }
4046}
You can’t perform that action at this time.
0 commit comments