From f0cccbe3285c039553e1fd8b5a5c7830d6087974 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 6 Mar 2025 22:56:56 +0100 Subject: Replace ASL_MOVE, ASL_FWD, and ASL_FWD_LIKE by their std:: equivalent This is because some compiler stuff and diagnostics tools rely on those symboles being what they are. --- asl/logging/logging.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'asl/logging/logging.cpp') diff --git a/asl/logging/logging.cpp b/asl/logging/logging.cpp index edf065d..2cb9a3f 100644 --- a/asl/logging/logging.cpp +++ b/asl/logging/logging.cpp @@ -3,14 +3,22 @@ // SPDX-License-Identifier: BSD-3-Clause #include "asl/logging/logging.hpp" + +#include "asl/containers/intrusive_list.hpp" +#include "asl/formatting/format.hpp" #include "asl/io/print.hpp" +#include "asl/io/writer.hpp" #include "asl/strings/string_builder.hpp" +#include "asl/strings/string_view.hpp" +#include "asl/types/span.hpp" // @Todo Don't use internal get_stdout_writer, make console module +// NOLINTNEXTLINE(*-avoid-non-const-global-variables) static asl::log::DefaultLogger g_default_logger{asl::print_internals::get_stdout_writer()}; // @Todo Protect the loggers list being a mutex +// NOLINTNEXTLINE(*-avoid-non-const-global-variables) static asl::IntrusiveList g_loggers(&g_default_logger); void asl::log::register_logger(Logger* logger) @@ -56,7 +64,7 @@ void asl::log::log_inner( StringWriter msg_writer{}; asl::format_internals::format(&msg_writer, fmt, args); - message m{ + const message m{ .level = l, .message = msg_writer.as_string_view(), .location = sl, -- cgit