Skip to content

Commit d728c63

Browse files
Update logging severity
1 parent cefd428 commit d728c63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cursorless-vscode-e2e/src/suite/performance.vscode.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ suite(`Performance: ${numLines} lines JSON`, async function () {
3434
this.beforeEach(function () {
3535
const title = this.currentTest!.title;
3636
if (title !== previousTitle) {
37-
console.debug(` * ${title}`);
37+
console.log(` * ${title}`);
3838
previousTitle = title;
3939
}
4040
});
@@ -125,7 +125,7 @@ async function testPerformance(threshold: number, action: ActionDescriptor) {
125125

126126
const duration = Math.round(performance.now() - start);
127127

128-
console.debug(` ${duration} ms`);
128+
console.log(` ${duration} ms`);
129129

130130
assert.ok(
131131
duration < threshold,

0 commit comments

Comments
 (0)