modify something

This commit is contained in:
CupWater
2026-08-17 21:01:29 +08:00
parent 3274bf9393
commit 4fc7ef37c2
12 changed files with 133 additions and 47 deletions
+7 -3
View File
@@ -6,13 +6,17 @@
#include <string_view>
#include <featherlog/log_level.hpp>
#include <featherlog/log_message_flag.hpp>
namespace flog {
struct LogMessage {
namespace flog
{
struct LogMessage
{
std::chrono::system_clock::time_point timestamp;
LogLevel level;
std::string_view logger_name;
std::string text;
LogLevel level;
MessageFlag flag;
};
}