send all debug output to easylogger

pull/2/head
Jaquee 8 years ago
parent fdc71d2b18
commit d589ab4058
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

@ -49,15 +49,23 @@
#include "model/TransactionHistorySortFilterModel.h" #include "model/TransactionHistorySortFilterModel.h"
#include "AddressBook.h" #include "AddressBook.h"
#include "model/AddressBookModel.h" #include "model/AddressBookModel.h"
#include "wallet/wallet2_api.h"
// IOS exclusions // IOS exclusions
#ifndef Q_OS_IOS #ifndef Q_OS_IOS
#include "daemon/DaemonManager.h" #include "daemon/DaemonManager.h"
#endif #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[]) int main(int argc, char *argv[])
{ {
qInstallMessageHandler(messageHandler);
QApplication app(argc, argv); QApplication app(argc, argv);
qDebug() << "app startd"; qDebug() << "app startd";
@ -195,3 +203,4 @@ int main(int argc, char *argv[])
return app.exec(); return app.exec();
} }