Skip to content

Commit 10f7547

Browse files
authored
Merge pull request #3054 from AkihiroSuda/fix-2980
limactl shell: avoid silencing errors
2 parents f082bab + ab48fb7 commit 10f7547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/limactl/shell.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ func shellAction(cmd *cobra.Command, args []string) error {
185185
sshArgs = append(sshArgs, "-o", "SendEnv=COLORTERM")
186186
}
187187
sshArgs = append(sshArgs, []string{
188-
"-q",
188+
"-o", "LogLevel=ERROR",
189189
"-p", strconv.Itoa(inst.SSHLocalPort),
190190
inst.SSHAddress,
191191
"--",

0 commit comments

Comments
 (0)