SHA256
.
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
#include "log_level.hpp"
|
#include <featherlog/log_level.hpp>
|
||||||
|
|
||||||
namespace flog
|
namespace flog
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,20 +3,21 @@
|
|||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
#include "log_formatter.hpp"
|
#include <featherlog/log_formatter.hpp>
|
||||||
#include "log_message.hpp"
|
#include <featherlog/log_message.hpp>
|
||||||
|
#include <featherlog/flog_definitions.h>
|
||||||
|
|
||||||
namespace flog
|
namespace flog
|
||||||
{
|
{
|
||||||
class LogOutputter
|
class FLOG_API LogOutputter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~LogOutputter() = default;
|
virtual ~LogOutputter() = default;
|
||||||
|
|
||||||
std::unique_ptr<LogFormatter> set_formatter(const std::unique_ptr<LogFormatter>& formatter);
|
std::unique_ptr<LogFormatter> FLOG_CALL set_formatter(const std::unique_ptr<LogFormatter>& formatter);
|
||||||
std::unique_ptr<LogFormatter>& get_formatter();
|
[[nodiscard]] const std::unique_ptr<LogFormatter>& FLOG_CALL get_formatter() const;
|
||||||
|
|
||||||
virtual void write(const LogMessage& message) = 0;
|
virtual void FLOG_CALL write(const LogMessage& message) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::unique_ptr<LogFormatter> m_logFormatter;
|
std::unique_ptr<LogFormatter> m_logFormatter;
|
||||||
|
|||||||
@@ -3,14 +3,15 @@
|
|||||||
|
|
||||||
#include <format>
|
#include <format>
|
||||||
#include <source_location>
|
#include <source_location>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
#include "log_manager.hpp"
|
#include <featherlog/flog_definitions.h>
|
||||||
|
|
||||||
namespace flog
|
namespace flog
|
||||||
{
|
{
|
||||||
class LoggerCallback;
|
class LoggerManager;
|
||||||
|
|
||||||
class Logger
|
class FLOG_API Logger
|
||||||
{
|
{
|
||||||
friend class LogManager;
|
friend class LogManager;
|
||||||
|
|
||||||
@@ -18,11 +19,12 @@ namespace flog
|
|||||||
~Logger() = default;
|
~Logger() = default;
|
||||||
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
void info(std::format_string<Args...> fmt, Args&&... args,
|
void FLOG_CALL info(std::format_string<Args...> fmt, Args&&... args,
|
||||||
std::source_location loc = std::source_location::current());
|
std::source_location loc = std::source_location::current());
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Logger(const std::string& name, std::weak_ptr<LogManager> manager) : m_name(name), m_logManager(manager)
|
Logger(std::string name, const std::weak_ptr<LogManager> &manager) noexcept :
|
||||||
|
m_name(std::move(name)), m_logManager(manager)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
std::string m_name;
|
std::string m_name;
|
||||||
|
|||||||
Reference in New Issue
Block a user