From 9de268d293e995aa8aec309d5f649d12ff8755e2 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 3 Mar 2025 18:14:39 +0000 Subject: [PATCH] chore: Reduce noisy log lines related to fingerprints not required by GUI --- src/lib/net/SecureSocket.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/net/SecureSocket.cpp b/src/lib/net/SecureSocket.cpp index 7bc622fc3..435393c6e 100644 --- a/src/lib/net/SecureSocket.cpp +++ b/src/lib/net/SecureSocket.cpp @@ -684,7 +684,7 @@ bool SecureSocket::verifyCertFingerprint(const deskflow::fs::path &fingerprintDb } if (!emptyDB) { - LOG((CLOG_NOTE "read %d fingerprint(s) from file: %s", db.fingerprints().size(), path.c_str())); + LOG((CLOG_DEBUG "read %d fingerprint(s) from file: %s", db.fingerprints().size(), path.c_str())); } if (!db.isTrusted(sha256)) { @@ -692,7 +692,7 @@ bool SecureSocket::verifyCertFingerprint(const deskflow::fs::path &fingerprintDb return false; } - LOG((CLOG_NOTE "fingerprint matches trusted fingerprint")); + LOG((CLOG_DEBUG "fingerprint matches trusted fingerprint")); return true; }