diff options
author | Finn Behrens <me@kloenk.dev> | 2024-06-01 16:06:26 +0200 |
---|---|---|
committer | Finn Behrens <me@kloenk.dev> | 2024-06-22 14:20:27 +0200 |
commit | da4e46dd1fc04067b5ba4bc16dd68134fa7efad2 (patch) | |
tree | de928e67208328cac91b1afb8ce368918f0b8266 /src/libutil | |
parent | 21865ccce0a5bf6edcb98a09b57b3f076ee9ba9f (diff) |
libmain: add progress bar with multiple status lines
Add the log-formats `multiline` and `multiline-with-logs` which offer
multiple current active building status lines.
Change-Id: Idd8afe62f8591b5d8b70e258c5cefa09be4cab03
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/logging.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 64be8bc62..115b979f8 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -114,6 +114,9 @@ public: virtual void setPrintBuildLogs(bool printBuildLogs) { } + + virtual void setPrintMultiline(bool printMultiline) + { } }; /** |