Increase log line frequency

This commit is contained in:
Joshua Boniface 2021-07-18 20:19:59 -04:00
parent 2d48127e9c
commit a0e9b57d39
1 changed files with 2 additions and 2 deletions

View File

@ -1263,8 +1263,8 @@ def follow_console_log(config, vm, lines=10):
# If there's a difference, print it out # If there's a difference, print it out
if diff_console_log: if diff_console_log:
print(diff_console_log, end='') print(diff_console_log, end='')
# Wait a second # Wait half a second
time.sleep(1) time.sleep(0.5)
return True, '' return True, ''