From 8907cbdc00d48f4d8d5375f3ecca48c24395fb08 Mon Sep 17 00:00:00 2001
From: Georgy Moshkin <gmoshkin@picodata.io>
Date: Fri, 29 Mar 2024 17:53:09 +0300
Subject: [PATCH] chore: stop sentinel from spamming logs with info messages

---
 src/sentinel.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sentinel.rs b/src/sentinel.rs
index 0ba3322e86..34e4fc8db1 100644
--- a/src/sentinel.rs
+++ b/src/sentinel.rs
@@ -35,7 +35,7 @@ impl Loop {
         }: &mut State,
     ) -> ControlFlow<()> {
         if status.get() == SentinelStatus::Initial || node::global().is_err() {
-            tlog!(Info, "waiting until initialized...");
+            tlog!(Debug, "waiting until initialized...");
             _ = status.changed().timeout(Self::SENTINEL_LONG_SLEEP).await;
             return ControlFlow::Continue(());
         }
-- 
GitLab