Nix 2.93.3
Lix: A modern, delicious implementation of the Nix package manager; unstable internal interfaces
Loading...
Searching...
No Matches
loggers.hh
Go to the documentation of this file.
1#pragma once
3
5
6namespace nix {
7
8enum class LogFormat {
9 raw,
10 rawWithLogs,
11 internalJSON,
12 bar,
13 barWithLogs,
14 multiline,
15 multilineWithLogs,
16};
17
18void setLogFormat(const std::string & logFormatStr);
19void setLogFormat(const LogFormat & logFormat);
20
21void createDefaultLogger();
22
23}