From 72bde4eb02b1ed3ba5b318633483cb43601afe49 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Thu, 12 Sep 2019 15:48:10 -0700 Subject: [PATCH] Log the location of hushd we find --- src/connection.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/connection.cpp b/src/connection.cpp index e1c0ec6..3225012 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -354,8 +354,10 @@ bool ConnectionLoader::startEmbeddedZcashd() { if (!QFile(hushdProgram).exists()) { qDebug() << "Can't find hushd at " << hushdProgram; - main->logger->write("Can't find hushd at " + hushdProgram); + main->logger->write("Can't find hushd at " + hushdProgram); return false; + } else { + main->logger->write("Found hushd at " + hushdProgram); } ezcashd = std::shared_ptr(new QProcess(main));