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 56ebeda commit 1223a77Copy full SHA for 1223a77
web_src/js/modules/init.ts
@@ -8,8 +8,7 @@ export class InitPerformanceTracer {
8
printResults() {
9
this.results = this.results.sort((a, b) => b.dur - a.dur);
10
for (let i = 0; i < 20 && i < this.results.length; i++) {
11
- // eslint-disable-next-line no-console
12
- console.log(`performance trace: ${this.results[i].name} ${this.results[i].dur.toFixed(3)}`);
+ console.info(`performance trace: ${this.results[i].name} ${this.results[i].dur.toFixed(3)}`);
13
}
14
15
0 commit comments