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 cd72d3f commit 0b44c79Copy full SHA for 0b44c79
src/collectionview-common.ts
@@ -71,7 +71,7 @@ export enum CLogTypes {
71
}
72
73
export const CLog = (type: CLogTypes, ...args) => {
74
- Trace.write(args.join(' '), CollectionViewTraceCategory, type);
+ Trace.write(args.map(a=>(a && typeof a === 'object'? JSON.stringify(a) :a)).join(' '), CollectionViewTraceCategory, type);
75
};
76
77
const autoEffectiveRowHeight = 0;
0 commit comments