From 9c495211bba5543af0d49957d6c6982d18d1eabe Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 24 Feb 2025 16:52:58 +0100 Subject: [PATCH] [skip-changelog] Investigate some integration-test failures (increase debugging prints) (#2844) --- internal/integrationtest/daemon/daemon_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/integrationtest/daemon/daemon_test.go b/internal/integrationtest/daemon/daemon_test.go index c90c5c7ac61..53d39566d32 100644 --- a/internal/integrationtest/daemon/daemon_test.go +++ b/internal/integrationtest/daemon/daemon_test.go @@ -618,6 +618,7 @@ func analyzeUpdateIndexClient(t *testing.T, cl commands.ArduinoCoreService_Updat analyzer := NewDownloadProgressAnalyzer(t) for { msg, err := cl.Recv() + fmt.Println("UPDATE>", msg, err) if errors.Is(err, io.EOF) { return analyzer.Results, nil }