From c82fc071f46b8c1396127089723a1b729ffda221 Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <joseph@walton-rivers.uk> Date: Sat, 20 Aug 2022 12:10:12 +0100 Subject: [PATCH] rename fmt-based logging --- .../fggl/debug/impl/{logging_std20.hpp => logging_fmt.hpp} | 6 +++--- include/fggl/debug/logging.hpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename include/fggl/debug/impl/{logging_std20.hpp => logging_fmt.hpp} (96%) diff --git a/include/fggl/debug/impl/logging_std20.hpp b/include/fggl/debug/impl/logging_fmt.hpp similarity index 96% rename from include/fggl/debug/impl/logging_std20.hpp rename to include/fggl/debug/impl/logging_fmt.hpp index afc2a74..4f22247 100644 --- a/include/fggl/debug/impl/logging_std20.hpp +++ b/include/fggl/debug/impl/logging_fmt.hpp @@ -16,8 +16,8 @@ // Created by webpigeon on 11/06/22. // -#ifndef FGGL_DEBUG_IMPL_LOGGING_STD20_HPP -#define FGGL_DEBUG_IMPL_LOGGING_STD20_HPP +#ifndef FGGL_DEBUG_IMPL_LOGGING_FMT_HPP +#define FGGL_DEBUG_IMPL_LOGGING_FMT_HPP #include <fmt/format.h> #include <iostream> @@ -114,4 +114,4 @@ namespace fggl::debug { } -#endif //FGGL_DEBUG_IMPL_LOGGING_STD20_HPP +#endif //FGGL_DEBUG_IMPL_LOGGING_FMT_HPP diff --git a/include/fggl/debug/logging.hpp b/include/fggl/debug/logging.hpp index adb0175..a146c9c 100644 --- a/include/fggl/debug/logging.hpp +++ b/include/fggl/debug/logging.hpp @@ -48,6 +48,6 @@ namespace fggl::debug { void log(Level level, FmtType fmt, T&& ...args); } -#include "fggl/debug/impl/logging_std20.hpp" +#include "fggl/debug/impl/logging_fmt.hpp" #endif //FGGL_DEBUG_LOGGING_HPP -- GitLab