mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Context: Removed parentheses for readability
This commit is contained in:
parent
f92219e5cd
commit
fc55a5521f
1 changed files with 9 additions and 9 deletions
|
@ -339,15 +339,15 @@ int Context::run ()
|
|||
<< " sort:" << timer_sort.total ()
|
||||
<< " render:" << timer_render.total ()
|
||||
<< " hooks:" << timer_hooks.total ()
|
||||
<< " other:" << timer_total.total () -
|
||||
(timer_init.total () +
|
||||
timer_load.total () +
|
||||
timer_gc.total () +
|
||||
timer_filter.total () +
|
||||
timer_commit.total () +
|
||||
timer_sort.total () +
|
||||
timer_render.total () +
|
||||
timer_hooks.total ())
|
||||
<< " other:" << timer_total.total () -
|
||||
timer_init.total () -
|
||||
timer_load.total () -
|
||||
timer_gc.total () -
|
||||
timer_filter.total () -
|
||||
timer_commit.total () -
|
||||
timer_sort.total () -
|
||||
timer_render.total () -
|
||||
timer_hooks.total ()
|
||||
<< " total:" << timer_total.total ()
|
||||
<< "\n";
|
||||
debug (s.str ());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue