We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a8a158 commit a30476fCopy full SHA for a30476f
src/charting/utils/Utils.ts
@@ -16,7 +16,7 @@ export enum CLogTypes {
16
}
17
18
export const CLog = (type: CLogTypes, ...args) => {
19
- Trace.write(args.join(' '), ChartTraceCategory, type);
+ Trace.write(args.map(a=>(a && typeof a === 'object'? JSON.stringify(a) :a)).join(' '), ChartTraceCategory, type);
20
};
21
22
export type FloatArray = Float32Array | Float64Array;
0 commit comments