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 2f17f15 commit 9c6a16dCopy full SHA for 9c6a16d
src/ui-mapbox/common.ts
@@ -15,7 +15,7 @@ export enum CLogTypes {
15
}
16
17
export const CLog = (type: CLogTypes, ...args) => {
18
- Trace.write(args.map((a) => (a && typeof a === 'object' ? JSON.stringify(a) : a)).join(' '), MapboxTraceCategory, type);
+ Trace.write(args.join(' '), MapboxTraceCategory, type);
19
};
20
21
// ------------------------------------------------------------
0 commit comments