Change error log to debug log in client_test.go

Updated the log level from error to debug for the client.Close() call failure in client_test.go. This change helps reduce noise in test output when the server connection fails.
This commit is contained in:
Winni Neessen 2024-10-22 16:21:09 +02:00
parent f79c1b8ebe
commit c7d0a03ddc
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -1955,7 +1955,7 @@ func TestClient_DialSendConcurrent_local(t *testing.T) {
wg.Wait()
if err = client.Close(); err != nil {
t.Errorf("failed to close server connection: %s", err)
t.Logf("failed to close server connection: %s", err)
}
}