diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-01-25 19:03:13 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-01-25 19:03:13 +0100 |
commit | 36c4d6f59247826dde32ad2e6b5a9471a9a1c911 (patch) | |
tree | c07928e4554aaf6622cd1df996fd4fdc1c368f20 /src/nix/main.cc | |
parent | 807d963ee8d23e88f09e28365b045d322530c5aa (diff) |
Group common options
Diffstat (limited to 'src/nix/main.cc')
-rw-r--r-- | src/nix/main.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index 77a13c913..58b643cc5 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -80,6 +80,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs .longName = "print-build-logs", .shortName = 'L', .description = "Print full build logs on standard error.", + .category = loggingCategory, .handler = {[&]() {setLogFormat(LogFormat::barWithLogs); }}, }); |