From 4fa0977603a132d3d630145d727e5d976a61b680 Mon Sep 17 00:00:00 2001 From: draoi Date: Mon, 2 Sep 2024 10:25:58 +0200 Subject: [PATCH] hosts: change last_seen from the future warning to a debug --- src/net/hosts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/hosts.rs b/src/net/hosts.rs index 2462c83d4..9b836fbea 100644 --- a/src/net/hosts.rs +++ b/src/net/hosts.rs @@ -727,8 +727,8 @@ impl HostContainer { // our system clock is behind or if other nodes are // misreporting the last_seen field. if now < last_seen { - warn!(target: "net::hosts::refresh()", - "System clock is behind or peer is misreporting last_seen field"); + debug!(target: "net::hosts::refresh()", + "last_seen [{}] is newer than current system time [{}]. Skipping", now, last_seen); continue } if (now - last_seen) > max_age {