outputs: restore default output of fetch/build/total times (#20394)

This commit is contained in:
Tamara Dahlgren 2020-12-15 01:46:30 -08:00 committed by GitHub
parent e7f4c2b49e
commit d67ca265a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1682,8 +1682,7 @@ def build_process(pkg, kwargs):
pkg._total_time = time.time() - start_time
build_time = pkg._total_time - pkg._fetch_time
tty.debug('{0} Successfully installed {1}'
.format(pre, pkg_id),
tty.msg('{0} Successfully installed {1}'.format(pre, pkg_id),
'Fetch: {0}. Build: {1}. Total: {2}.'
.format(_hms(pkg._fetch_time), _hms(build_time),
_hms(pkg._total_time)))