From e96f8a193dbd01bdbc6acf333c06c61bfb5e2712 Mon Sep 17 00:00:00 2001 From: DenioD <41270280+DenioD@users.noreply.github.com> Date: Fri, 19 Jun 2020 22:47:01 +0200 Subject: [PATCH] add more log output --- src/connection.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/connection.cpp b/src/connection.cpp index 220b4a8..e584da0 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -147,6 +147,7 @@ void ConnectionLoader::doAutoConnect() syncTimer->setInterval(1* 1000); syncTimer->start(); + main->logger->write("Start sync timer"); }, [=](QString err) { showError(err); @@ -159,6 +160,7 @@ void ConnectionLoader::createOrRestore(bool dangerous, QString server) d->hide(); // Create a wizard FirstTimeWizard wizard(dangerous, server); + main->logger->write("Start new Wallet with FirstimeWizard"); wizard.exec(); }