mirror of
https://github.com/NixOS/nix
synced 2025-06-27 16:51:15 +02:00
Progress indicator: Show number of active items
This commit is contained in:
parent
0e0dcf2c7e
commit
bf1f123b09
7 changed files with 39 additions and 28 deletions
|
@ -91,4 +91,9 @@ Activity::~Activity()
|
|||
logger->event(evStopActivity, id);
|
||||
}
|
||||
|
||||
void Activity::progress(uint64_t done, uint64_t expected, uint64_t running, uint64_t failed) const
|
||||
{
|
||||
logger->event(evProgress, id, done, expected, running, failed);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue