forked from lix-project/lix
20 lines
250 B
C++
20 lines
250 B
C++
|
#pragma once
|
||
|
|
||
|
#include "types.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
enum class LogFormat {
|
||
|
raw,
|
||
|
internalJson,
|
||
|
bar,
|
||
|
barWithLogs,
|
||
|
};
|
||
|
|
||
|
void setLogFormat(const string &logFormatStr);
|
||
|
void setLogFormat(const LogFormat &logFormat);
|
||
|
|
||
|
void createDefaultLogger();
|
||
|
|
||
|
}
|