dropping the significant figures as the default update rate is slower
This commit is contained in:
parent
ee106cc914
commit
8efa25baec
|
@ -145,7 +145,7 @@ class Printer:
|
|||
def rosmake_pkg_times_to_string(self, start_times):
|
||||
threads = []
|
||||
for p, t in sorted(start_times.iteritems(), key=itemgetter(1)):
|
||||
threads.append("[ %s: %.2f sec ]"%(p, time.time() - t))
|
||||
threads.append("[ %s: %.1f sec ]"%(p, time.time() - t))
|
||||
|
||||
return " ".join(threads)
|
||||
|
||||
|
|
Loading…
Reference in New Issue