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