From 093019b4ca9a74456eb47826905a64370d4d77c0 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Mon, 13 Feb 2023 10:16:37 +0100 Subject: [PATCH] mirror: log the the autoinstall repr. of a mirror when iterating Signed-off-by: Olivier Gayot --- subiquity/server/controllers/mirror.py | 1 + 1 file changed, 1 insertion(+) diff --git a/subiquity/server/controllers/mirror.py b/subiquity/server/controllers/mirror.py index 098d8a8f..171c2049 100644 --- a/subiquity/server/controllers/mirror.py +++ b/subiquity/server/controllers/mirror.py @@ -166,6 +166,7 @@ class MirrorController(SubiquityController): # Try each mirror one after another. compatibles = self.model.compatible_primary_candidates() for idx, candidate in enumerate(compatibles): + log.debug("Iterating over %s", candidate.serialize_for_ai()) if idx != 0: # Sleep before testing the next candidate.. log.debug("Will check next candiate mirror after 10 seconds.")