From 3310b478a1840741c0a19fbf00c864a5ca410ac6 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Fri, 24 Apr 2026 14:22:25 +1000 Subject: [PATCH] chore: do not log too noisy 'Sent log stream heartbeat.' log line for machine logs --- internal/machine/machine.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/machine/machine.go b/internal/machine/machine.go index c9d0d954..987e9d18 100644 --- a/internal/machine/machine.go +++ b/internal/machine/machine.go @@ -1213,7 +1213,6 @@ func (m *Machine) MachineLogs( return status.Errorf(codes.Internal, "send log stream heartbeat: %v", err) } lastSent = heartbeat.Timestamp.AsTime() - log.Debug("Sent log stream heartbeat.", "timestamp", lastSent) case <-ctx.Done(): return status.Error(codes.Canceled, ctx.Err().Error())