Skip to content
Snippets Groups Projects
Commit 41d5392c authored by Guillaume Desmottes's avatar Guillaume Desmottes
Browse files

ade: display sysroot versions in case of mismatch

parent da19b92b
No related branches found
No related tags found
No related merge requests found
......@@ -467,7 +467,7 @@ class SysrootManager:
# Don't fail on this check as it's broken for current images
if installed.version != version:
logging.warning("Mismatch between installed version and expected one")
logging.warning("Mismatch between installed version ({0}) and expected one ({1})".format(installed.version, version))
return installed
......@@ -574,7 +574,7 @@ class SysrootManager:
# Don't fail on this check as it's broken for current images
if f.version != version:
logging.warning("Mismatch between downloaded version and expected one")
logging.warning("Mismatch between downloaded version ({0}) and expected one ({1})".format(f.version, version))
return f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment