plot_sync: Change log level to INFO in Receiver.reset (#13463)

It's not necessarily an error, could be just a harvester restart.
This commit is contained in:
dustinface 2022-09-16 23:21:51 +02:00 committed by GitHub
parent 37ae10535e
commit 60908420b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ class Receiver:
log.error(f"_update_callback: node_id {self.connection().peer_node_id}, raised {e}")
def reset(self) -> None:
log.error(f"reset: node_id {self.connection().peer_node_id}, current_sync: {self._current_sync}")
log.info(f"reset: node_id {self.connection().peer_node_id}, current_sync: {self._current_sync}")
self._current_sync = Sync()
self._last_sync = Sync()
self._plots.clear()