From f9c74e0d3091c774fd31f910cfe2e111369c156d Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 17:59:14 -0500 Subject: [PATCH] fix: simplify authentication logging by removing password handling --- src/OverteClient.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/OverteClient.cpp b/src/OverteClient.cpp index 2eb22a9..55073bb 100644 --- a/src/OverteClient.cpp +++ b/src/OverteClient.cpp @@ -41,14 +41,10 @@ bool OverteClient::connect() { // Check for authentication credentials from environment const char* usernameEnv = std::getenv("OVERTE_USERNAME"); - const char* passwordEnv = std::getenv("OVERTE_PASSWORD"); if (usernameEnv) m_username = usernameEnv; - if (passwordEnv) m_password = passwordEnv; if (!m_username.empty()) { - std::cout << "[OverteClient] Using authentication: username=" << m_username << std::endl; - } else { - std::cout << "[OverteClient] No authentication credentials provided (set OVERTE_USERNAME/OVERTE_PASSWORD)" << std::endl; + std::cout << "[OverteClient] Username present (signature auth not yet implemented)" << std::endl; } // Parse ws://host:port