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 b25bcb1 commit 1512e46Copy full SHA for 1512e46
frontend/src/ts/utils/debug.ts
@@ -52,13 +52,20 @@ function logTiming(start: number, funcName: string): void {
52
count: arr.length,
53
});
54
const endOverhead = performance.now();
55
- //@ts-expect-error chrome api thingy
56
- console.timeStamp(`#${arr.length} ${funcName}`, start, end, funcName);
+ console.timeStamp(
+ `#${arr.length} ${funcName}`,
57
+ //@ts-expect-error chrome api thingy
58
+ start,
59
+ end,
60
+ funcName,
61
+ "monkeytype"
62
+ );
63
console.timeStamp(
64
`#${arr.length} profiling overhead`,
65
//@ts-expect-error chrome api thingy
66
end,
67
endOverhead,
- funcName
68
69
70
);
71
}
0 commit comments