cc_resizefs: show more specific time.

Show 3 decimal places for how long a resize took. 1 second granularity was
too large.
This commit is contained in:
Scott Moser 2012-07-10 14:39:39 -04:00
parent 8ae513e2a9
commit e1b9d4a8e7

View File

@ -134,7 +134,7 @@ def do_resize(resize_cmd, log):
except util.ProcessExecutionError:
util.logexc(log, "Failed to resize filesystem (cmd=%s)", resize_cmd)
raise
tot_time = int(time.time() - start)
log.debug("Resizing took %s seconds", tot_time)
tot_time = time.time() - start
log.debug("Resizing took %.3f seconds", tot_time)
# TODO: Should we add a fsck check after this to make
# sure we didn't corrupt anything?