mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
20 lines
272 B
C++
20 lines
272 B
C++
#pragma once
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
enum class LogFormat {
|
|
raw,
|
|
rawWithLogs,
|
|
internalJSON,
|
|
bar,
|
|
barWithLogs,
|
|
};
|
|
|
|
void setLogFormat(const std::string & logFormatStr);
|
|
void setLogFormat(const LogFormat & logFormat);
|
|
|
|
void createDefaultLogger();
|
|
|
|
}
|