aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
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();
}
+