We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1831f30 commit 70dcbf7Copy full SHA for 70dcbf7
packages/utils/src/object.ts
@@ -2,7 +2,6 @@ import { ExtendedError, WrappedFunction } from '@sentry/types';
2
3
import { isError, isPrimitive, isSyntheticEvent } from './is';
4
import { Memo } from './memo';
5
-import { truncate } from './string';
6
7
/**
8
* Wrap a given object method with a higher-order function
@@ -124,7 +123,7 @@ function serializeValue(value: any): any {
124
123
125
// Node.js REPL notation
126
if (typeof value === 'string') {
127
- return truncate(value, 40);
+ return value;
128
}
129
if (type === '[object Object]') {
130
return '[Object]';
0 commit comments