mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Context: Eliminated sort timer
This commit is contained in:
parent
d39934e7b9
commit
88512e25cb
3 changed files with 5 additions and 5 deletions
|
@ -329,7 +329,7 @@ int Context::run ()
|
|||
<< " gc:" << time_gc_us - tdb2.load_time_us
|
||||
<< " filter:" << time_filter_us
|
||||
<< " commit:" << time_commit_us
|
||||
<< " sort:" << static_cast <long> (timer_sort.total_us ())
|
||||
<< " sort:" << time_sort_us
|
||||
<< " render:" << static_cast <long> (timer_render.total_us ())
|
||||
<< " hooks:" << static_cast <long> (timer_hooks.total_us ())
|
||||
<< " other:" << static_cast <long> (timer_total.total_us () -
|
||||
|
@ -339,7 +339,7 @@ int Context::run ()
|
|||
tdb2.load_time_us -
|
||||
time_filter_us -
|
||||
time_commit_us -
|
||||
timer_sort.total_us () -
|
||||
time_sort_us -
|
||||
timer_render.total_us () -
|
||||
timer_hooks.total_us ())
|
||||
<< " total:" << static_cast <long> (timer_total.total_us ())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue