mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
stop logging monero sync non-error
This commit is contained in:
parent
ca8f63c07a
commit
b6613b2fd7
1 changed files with 3 additions and 3 deletions
|
@ -154,7 +154,7 @@ class MoneroWallet extends CoinServiceAPI {
|
|||
try {
|
||||
_height = (walletBase!.syncStatus as SyncingSyncStatus).height;
|
||||
} catch (e, s) {
|
||||
Logging.instance.log("$e $s", level: LogLevel.Warning);
|
||||
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
||||
}
|
||||
|
||||
int blocksRemaining = -1;
|
||||
|
@ -163,7 +163,7 @@ class MoneroWallet extends CoinServiceAPI {
|
|||
blocksRemaining =
|
||||
(walletBase!.syncStatus as SyncingSyncStatus).blocksLeft;
|
||||
} catch (e, s) {
|
||||
Logging.instance.log("$e $s", level: LogLevel.Warning);
|
||||
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
||||
}
|
||||
int currentHeight = _height + blocksRemaining;
|
||||
if (_height == -1 || blocksRemaining == -1) {
|
||||
|
@ -419,7 +419,7 @@ class MoneroWallet extends CoinServiceAPI {
|
|||
try {
|
||||
progress = (walletBase!.syncStatus!).progress();
|
||||
} catch (e, s) {
|
||||
Logging.instance.log("$e $s", level: LogLevel.Warning);
|
||||
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
||||
}
|
||||
await _fetchTransactionData();
|
||||
|
||||
|
|
Loading…
Reference in a new issue