Commit c59135c
authored
🤖 fix: filter SSH multiplexing stderr noise from command output (#987)
The previous fix (#981) used `LogLevel=ERROR`, but
`mux_client_request_session` messages are at ERROR level in OpenSSH.
Using `LogLevel=FATAL` suppresses these while still showing fatal
connection failures.
## One-line fix
```diff
- args.push("-o", "LogLevel=ERROR");
+ args.push("-o", "LogLevel=FATAL");
```
_Generated with `mux`_1 parent 7cd2c1f commit c59135c
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
667 | 667 | | |
668 | 668 | | |
669 | 669 | | |
670 | | - | |
| 670 | + | |
| 671 | + | |
671 | 672 | | |
672 | 673 | | |
673 | 674 | | |
| |||
0 commit comments