From 6e978cc42cad8326ebe53cd9c31f164250a5103b Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 8 Feb 2025 18:27:48 -0600 Subject: [PATCH] Add a logging statement when doing a source check --- cpp/web_server.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/web_server.cpp b/cpp/web_server.cpp index ab3224d..7be8278 100644 --- a/cpp/web_server.cpp +++ b/cpp/web_server.cpp @@ -225,6 +225,7 @@ bool WebServer::start_server(quint16 port) { bool found_in_ppa = false; for (auto spph : proposed.getPublishedSources("", "", std::nullopt, true, true, "", pkgconf->package->name, "", package_version)) { found_in_ppa = true; + log->append(std::format("{}/{} found", pkgconf->package->name, package_version)); break; } if (!found_in_ppa) throw std::runtime_error("Not found in the PPA.");