diff options
| author | Gavin Andresen <[email protected]> | 2014-07-01 10:25:38 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-07-01 10:25:38 -0400 |
| commit | f04f1234078288d4806aaab0952d60f137337e81 (patch) | |
| tree | f9bff170335fee185c37e40ea76eb59832f3f839 /src/qt/transactiontablemodel.cpp | |
| parent | Merge pull request #4325 (diff) | |
| parent | qt: Change serious messages from qDebug to qWarning (diff) | |
| download | discoin-f04f1234078288d4806aaab0952d60f137337e81.tar.xz discoin-f04f1234078288d4806aaab0952d60f137337e81.zip | |
Merge pull request #4448 from laanwj/2014_07_qt_payment_rq_logging
qt: Always log warning/error messages to debug.log
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index d7f4c043c..a93575224 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -130,12 +130,12 @@ public: case CT_NEW: if(inModel) { - qDebug() << "TransactionTablePriv::updateWallet : Warning: Got CT_NEW, but transaction is already in model"; + qWarning() << "TransactionTablePriv::updateWallet : Warning: Got CT_NEW, but transaction is already in model"; break; } if(!inWallet) { - qDebug() << "TransactionTablePriv::updateWallet : Warning: Got CT_NEW, but transaction is not in wallet"; + qWarning() << "TransactionTablePriv::updateWallet : Warning: Got CT_NEW, but transaction is not in wallet"; break; } if(showTransaction) @@ -159,7 +159,7 @@ public: case CT_DELETED: if(!inModel) { - qDebug() << "TransactionTablePriv::updateWallet : Warning: Got CT_DELETED, but transaction is not in model"; + qWarning() << "TransactionTablePriv::updateWallet : Warning: Got CT_DELETED, but transaction is not in model"; break; } // Removed -- remove entire transaction from table |