Skip to content
Snippets Groups Projects
Commit bcfb2150 authored by Nico's avatar Nico
Browse files

improve messages

parent ce611b37
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ def has_gw_connection():
return result["exitcode"] == 0
def wait_for_gw_connection():
logging.debug("Waiting for GW connection")
logging.info("Waiting for GW connection")
for i in range(90):
try:
if has_gw_connection():
......@@ -106,9 +106,8 @@ def create_snapshot_context():
delete_snapshot(snap_name)
def run_autoupdate():
logging.debug("Forcing autoupdate")
terminal = spawn_console()
logging.debug("executing autoupdater")
logging.info("executing autoupdater")
terminal.sendline("autoupdater -f")
logging.debug("Waiting for system reboot")
terminal.expect("Rebooting system")
......@@ -120,7 +119,7 @@ def run_autoupdate():
terminal.sendline()
terminal.sendline()
terminal.expect(PROMPT_REGEX)
logging.debug("System booted")
logging.info("System booted after update")
def assert_release(release_to_assert):
result = run_in_vm(["cat", "/lib/gluon/release"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment