aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-02-05 20:15:47 +0100
committerJaquee <jaquee.monero@gmail.com>2017-02-16 07:48:07 +0100
commitd589ab405868d87cf3c2aa64f47819c161568e19 (patch)
tree1dbb2374a181e4677b2b4d2e93b35186e1720d43 /main.cpp
parentfdc71d2b187743f03e4fea27324a5074fd798634 (diff)
downloadmonzero-gui-d589ab405868d87cf3c2aa64f47819c161568e19.tar.gz
monzero-gui-d589ab405868d87cf3c2aa64f47819c161568e19.tar.xz
monzero-gui-d589ab405868d87cf3c2aa64f47819c161568e19.zip
send all debug output to easylogger
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 63740cbf..0b6aa297 100644
--- a/main.cpp
+++ b/main.cpp
@@ -49,15 +49,23 @@
#include "model/TransactionHistorySortFilterModel.h"
#include "AddressBook.h"
#include "model/AddressBookModel.h"
+#include "wallet/wallet2_api.h"
// IOS exclusions
#ifndef Q_OS_IOS
#include "daemon/DaemonManager.h"
#endif
+void messageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
+{
+ // Send all message types to logger
+ Monero::Wallet::debug(msg.toStdString());
+}
+
int main(int argc, char *argv[])
{
+ qInstallMessageHandler(messageHandler);
QApplication app(argc, argv);
qDebug() << "app startd";
@@ -195,3 +203,4 @@ int main(int argc, char *argv[])
return app.exec();
}
+