Skip to content

Commit 6874076

Browse files
committed
Print performance output into debug output
1 parent 3440a0d commit 6874076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/performance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as main from "./main";
55
const performanceObserver = new PerformanceObserver((list) => {
66
const entry = list.getEntries()[0];
77
if(main.config.get<boolean>("performance.log")) {
8-
main.output.appendLine(`${entry.name}: ${entry.duration}ms`);
8+
main.debugOutput.appendLine(`${entry.name}: ${entry.duration}ms`);
99
}
1010
});
1111

0 commit comments

Comments
 (0)