pkgs/cli: Fix ssh logging

Fix the ssh logging level.
Currently the ssh commands is printed every time on an ssh connection.
While seeing the command is useful, we should print this when running
clan with the `--debug` flag.
This commit is contained in:
a-kenji
2025-07-15 14:20:40 +02:00
parent bfec09e652
commit e342996306

View File

@@ -433,7 +433,7 @@ class Remote:
"--",
" ".join(map(quote, command)),
]
cmdlog.info(
cmdlog.debug(
f"{indent_command(ssh_cmd)}",
extra={
"command_prefix": self.command_prefix,