Skip to content

Commit 7f4b063

Browse files
authored
tweak: use console error for limit log (#42)
1 parent 85d77a9 commit 7f4b063

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/commands/sandbox/list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export async function listSandboxes(
124124
});
125125

126126
// eslint-disable-next-line no-console
127-
console.log(
127+
console.error(
128128
`\nShowing ${allSandboxes.length} of ${totalCount} sandboxes`
129129
);
130130

@@ -177,7 +177,7 @@ export async function listSandboxes(
177177

178178
if (limit && totalCount > allSandboxes.length) {
179179
// eslint-disable-next-line no-console
180-
console.log(
180+
console.error(
181181
`\nShowing ${allSandboxes.length} of ${totalCount} sandboxes`
182182
);
183183
}

0 commit comments

Comments
 (0)