Reduce console logging spam

This commit is contained in:
tobtoht 2022-03-04 23:01:47 +01:00
parent 07d7dfffcb
commit 69a13449fa
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C
3 changed files with 0 additions and 7 deletions

View file

@ -487,8 +487,6 @@ void MainWindow::onWalletOpened() {
}
void MainWindow::onBalanceUpdated(quint64 balance, quint64 spendable) {
qDebug() << Q_FUNC_INFO;
bool hide = config()->get(Config::hideBalance).toBool();
int displaySetting = config()->get(Config::balanceDisplay).toInt();
int decimals = config()->get(Config::amountPrecision).toInt();

View file

@ -258,8 +258,6 @@ void AppContext::onWalletRefreshed(bool success, const QString &message) {
// store wallet immediately upon finishing synchronization
this->wallet->store();
}
qDebug() << "Wallet refresh status: " << success;
}
void AppContext::onWalletNewBlock(quint64 blockheight, quint64 targetHeight) {
@ -274,8 +272,6 @@ void AppContext::onWalletNewBlock(quint64 blockheight, quint64 targetHeight) {
}
void AppContext::onHeightRefreshed(quint64 walletHeight, quint64 daemonHeight, quint64 targetHeight) {
qDebug() << Q_FUNC_INFO << walletHeight << daemonHeight << targetHeight;
if (this->wallet->connectionStatus() == Wallet::ConnectionStatus_Disconnected)
return;

View file

@ -44,7 +44,6 @@ void WalletListenerImpl::updated()
// called when wallet refreshed by background thread or explicitly
void WalletListenerImpl::refreshed(bool success)
{
qDebug() << __FUNCTION__;
QString message = m_wallet->errorString();
m_wallet->onRefreshed(success);
emit m_wallet->refreshed(success, message);