summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cloudinit/sources/helpers/openstack.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/cloudinit/sources/helpers/openstack.py b/cloudinit/sources/helpers/openstack.py
index 56986a94..3ceec837 100644
--- a/cloudinit/sources/helpers/openstack.py
+++ b/cloudinit/sources/helpers/openstack.py
@@ -424,8 +424,9 @@ class MetadataReader(BaseReader):
" version '%s' instead", version,
potential_version)
return potential_version
- LOG.debug("Version '%s' not available, searched %s, attempting to"
- " use '%s' instead", version, search_versions, OS_LATEST)
+ LOG.debug("Version '%s' not available, searched for %s (with available"
+ " versions being %s), attempting to use '%s' instead",
+ version, search_versions, versions_available, OS_LATEST)
return OS_LATEST
def _path_read(self, path):