From 68fb3d74b9095e20160c62993e90785ea918e522 Mon Sep 17 00:00:00 2001
From: Facundo Almeida <facundoalmeida@gmail.com>
Date: Tue, 20 May 2025 22:03:04 -0300
Subject: [PATCH] Add debug message

---
 sftp/kio_sftp.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sftp/kio_sftp.cpp b/sftp/kio_sftp.cpp
index 27c345e0a..b8117edf5 100644
--- a/sftp/kio_sftp.cpp
+++ b/sftp/kio_sftp.cpp
@@ -889,6 +889,7 @@ Result SFTPWorker::openConnectionWithoutCloseOnError()
                 return Result::fail(KIO::ERR_CANNOT_LOGIN, i18n("Authentication failed."));
             }
             if (rc == SSH_AUTH_PARTIAL) {
+                qCDebug(KIO_SFTP_LOG) << "Public key authentication succeeded, but another method is still required";
                 method = ssh_auth_list(mSession);
                 break;
             }
-- 
GitLab

