diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-05-06 10:54:01 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-05-06 10:54:18 +0200 |
commit | fd4911269f9a9ce0f9647c5fb88658074f654eff (patch) | |
tree | 009ac21e311fa25bc4736077df1bd4c97815ff90 /src/libutil | |
parent | 909b4a882057a92ae8b40b8afdab3c4ac30da915 (diff) |
Revert "Merge pull request #3558 from LnL7/ssh-ng-stderr"
This reverts commit 3ebfbecdd187002569257f7cb183bf9e0b39af1e, reversing
changes made to c089c52d5f1cff888552f485775b74226dcbe618.
https://github.com/NixOS/nix/pull/3558
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/logging.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc index 777650de5..3cc4ef8f1 100644 --- a/src/libutil/logging.cc +++ b/src/libutil/logging.cc @@ -63,16 +63,6 @@ public: writeToStderr(prefix + filterANSIEscapes(fs.s, !tty) + "\n"); } - void result(ActivityId act, ResultType type, const std::vector<Field> & fields) override - { - if (type == resBuildLogLine || type == resPostBuildLogLine) { - assert(0 < fields.size()); - assert(fields[0].type == Logger::Field::tString); - auto lastLine = fields[0].s; - log(lvlInfo, lastLine); - } - } - void startActivity(ActivityId act, Verbosity lvl, ActivityType type, const std::string & s, const Fields & fields, ActivityId parent) override |