modify something

This commit is contained in:
CupWater
2026-08-18 13:55:04 +08:00
parent 693db85e3b
commit c7d4b87d3e
15 changed files with 51 additions and 46 deletions
+2 -5
View File
@@ -1,5 +1,4 @@
#ifndef FEATHERLOG_LOG_FORMATTER_HPP
#define FEATHERLOG_LOG_FORMATTER_HPP
#pragma once
#include <string>
#include <featherlog/flog_definitions.h>
@@ -11,8 +10,6 @@ namespace flog
public:
virtual ~LogFormatter() = default;
virtual std::string FLOG_CALL format() = 0;
_NODISCARD virtual std::string FLOG_CALL format(const LogMessage& message) = 0;
};
}
#endif