mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Context: Eliminated hooks timer
This commit is contained in:
parent
ae128f587d
commit
e3d006f867
3 changed files with 11 additions and 11 deletions
|
@ -331,7 +331,7 @@ int Context::run ()
|
|||
<< " commit:" << time_commit_us
|
||||
<< " sort:" << time_sort_us
|
||||
<< " render:" << static_cast <long> (timer_render.total_us ())
|
||||
<< " hooks:" << static_cast <long> (timer_hooks.total_us ())
|
||||
<< " hooks:" << time_hooks_us
|
||||
<< " other:" << static_cast <long> (timer_total.total_us () -
|
||||
time_init_us -
|
||||
timer_load.total_us () -
|
||||
|
@ -341,7 +341,7 @@ int Context::run ()
|
|||
time_commit_us -
|
||||
time_sort_us -
|
||||
timer_render.total_us () -
|
||||
timer_hooks.total_us ())
|
||||
time_hooks_us)
|
||||
<< " total:" << static_cast <long> (timer_total.total_us ())
|
||||
<< '\n';
|
||||
debug (s.str ());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue