Skip to content

Commit 1223a77

Browse files
authored
Update web_src/js/modules/init.ts
1 parent 56ebeda commit 1223a77

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

web_src/js/modules/init.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ export class InitPerformanceTracer {
88
printResults() {
99
this.results = this.results.sort((a, b) => b.dur - a.dur);
1010
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)}`);
11+
console.info(`performance trace: ${this.results[i].name} ${this.results[i].dur.toFixed(3)}`);
1312
}
1413
}
1514
}

0 commit comments

Comments
 (0)