diff --git a/backend/src/terminal/ssh-connection.service.ts b/backend/src/terminal/ssh-connection.service.ts index 1ad2d74..a5f3d4f 100644 --- a/backend/src/terminal/ssh-connection.service.ts +++ b/backend/src/terminal/ssh-connection.service.ts @@ -136,7 +136,7 @@ export class SshConnectionService { if (cred.sshKey.passphrase) { connectConfig.passphrase = cred.sshKey.passphrase; } - this.logger.log(`[SSH] Using SSH key auth (type: ${cred.sshKey.keyType || 'unknown'})`); + this.logger.log(`[SSH] Using SSH key auth`); } else if (cred?.password) { connectConfig.password = cred.password; this.logger.log(`[SSH] Using password auth for hostId=${hostId}`);