Skip to content

Commit 7bb6a70

Browse files
durchpronebird
authored andcommitted
Downgrade log spam
1 parent 76c1fb1 commit 7bb6a70

File tree

1 file changed

+3
-3
lines changed
  • nym-vpn-core/crates/nym-vpn-account-controller/src/state_machine/syncing_state

1 file changed

+3
-3
lines changed

nym-vpn-core/crates/nym-vpn-account-controller/src/state_machine/syncing_state/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,15 @@ impl<C: ConnectivityMonitor> AccountControllerStateHandler<C> for SyncingState {
201201
Ok(fair_usage) => { NextAccountControllerState::NewState(RequestingZkNymsState::enter(shared_state, self.attempts, fair_usage))},
202202
Err(e) if e.is_retryable() => {
203203
if self.attempts > MAX_SYNCING_ATTEMPTS {
204-
tracing::error!("Error trying to get account summary, exhausted retries : {}", e.to_string());
204+
tracing::debug!("Error trying to get account summary, exhausted retries : {}", e.to_string());
205205
NextAccountControllerState::NewState(ErrorState::enter(e.into()))
206206
} else {
207-
tracing::error!("Error trying to get account summary, retrying : {}", e.to_string());
207+
tracing::debug!("Error trying to get account summary, retrying : {}", e.to_string());
208208
NextAccountControllerState::NewState(SyncingState::enter(shared_state, self.attempts + 1))
209209
}
210210
},
211211
Err(e) => {
212-
tracing::error!("Error trying to get account summary, not retrying : {}", e.to_string());
212+
tracing::debug!("Error trying to get account summary, not retrying : {}", e.to_string());
213213
NextAccountControllerState::NewState(ErrorState::enter(e.into()))
214214
},
215215
}

0 commit comments

Comments
 (0)