diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-08-28T17·13+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-08-28T17·13+0200 |
commit | 2cc345b95f19334e7050c7203a5f6823af24344f (patch) | |
tree | 0bb381ffa64ceb59fac0ab6416e5699854c0c028 /src/libstore/remote-store.cc | |
parent | cfc813239128fc69a9228b39b5c0abb7e7a67b11 (diff) |
Give activities a verbosity level again
And print them (separately from the progress bar) given sufficient -v flags.
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index f0e3502bf79a..1af84cff5ba8 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -679,11 +679,12 @@ void RemoteStore::Connection::processStderr(Sink * sink, Source * source) else if (msg == STDERR_START_ACTIVITY) { auto act = readNum<ActivityId>(from); + auto lvl = (Verbosity) readInt(from); auto type = (ActivityType) readInt(from); auto s = readString(from); auto fields = readFields(from); auto parent = readNum<ActivityId>(from); - logger->startActivity(act, type, s, fields, parent); + logger->startActivity(act, lvl, type, s, fields, parent); } else if (msg == STDERR_STOP_ACTIVITY) { |