mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-22 02:34:30 +00:00
Reduce console logging spam
This commit is contained in:
parent
07d7dfffcb
commit
69a13449fa
3 changed files with 0 additions and 7 deletions
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue