9#include "ncengine/type/StableAddress.h"
21 static constexpr auto DefaultMaxLogSize = 1000000ull;
22 static constexpr auto DefaultMessageFlushCount = 20ull;
25 size_t logMaxFileSize = DefaultMaxLogSize,
26 size_t messageFlushCount = DefaultMessageFlushCount);
31 static inline FileLogger* s_instance =
nullptr;
33 std::vector<std::string> m_messages;
34 std::string m_logPath;
36 size_t m_messageFlushCount;
39 std::string_view subsystem,
40 std::string_view file,
42 std::string_view message);
44 void BufferMessage(std::string&& message);
45 void Flush()
noexcept;
LogCategory
Type of a log message.
Definition: Log.h:15
Basic file logging implementation. Construct this on the stack in main() to reroute logging to a file...
Definition: FileLogger.h:19
Base class for non-copyable non-movable types.
Definition: StableAddress.h:7