Skip to content

Commit 9c6a16d

Browse files
author
farfromrefug
committed
chore: logging fix
1 parent 2f17f15 commit 9c6a16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui-mapbox/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export enum CLogTypes {
1515
}
1616

1717
export const CLog = (type: CLogTypes, ...args) => {
18-
Trace.write(args.map((a) => (a && typeof a === 'object' ? JSON.stringify(a) : a)).join(' '), MapboxTraceCategory, type);
18+
Trace.write(args.join(' '), MapboxTraceCategory, type);
1919
};
2020

2121
// ------------------------------------------------------------

0 commit comments

Comments
 (0)