From b65bc9dca70048d6e1c41abbf47d93a4f4b30d3e Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Tue, 21 Mar 2023 11:22:43 -0400 Subject: [PATCH] Better explanation. --- src/allmydata/storage_client.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/allmydata/storage_client.py b/src/allmydata/storage_client.py index 19d6ef4a7..a52bb3f75 100644 --- a/src/allmydata/storage_client.py +++ b/src/allmydata/storage_client.py @@ -1038,7 +1038,10 @@ def _pick_a_http_server( # Logging errors breaks a bunch of tests, and it's not a _bug_ to # have a failed connection, it's often expected and transient. More # of a warning, really? - log.msg("Failed to connect to NURL: {}".format(failure)) + log.msg( + "Failed to connect to a storage server advertised by NURL: {}".format( + failure) + ) return None def succeeded(result: tuple[int, DecodedURL]):