mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Context: GC timing correction not always needed
This commit is contained in:
parent
7041c466b4
commit
9f36fdfe65
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ int Context::run ()
|
|||
|
||||
<< " init:" << time_init_us
|
||||
<< " load:" << time_load_us
|
||||
<< " gc:" << time_gc_us - time_load_us
|
||||
<< " gc:" << (time_gc_us > 0 ? time_gc_us - time_load_us : time_gc_us)
|
||||
<< " filter:" << time_filter_us
|
||||
<< " commit:" << time_commit_us
|
||||
<< " sort:" << time_sort_us
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue