From f066f460212b07aacaa79685ef6b0f0bd284e34d Mon Sep 17 00:00:00 2001 From: whaffman Date: Sun, 21 Sep 2025 00:00:42 +0200 Subject: [PATCH] Add TODO comment for refactoring LOG_LEVEL_MAP to a separate namespace or log class --- webserv/log/LogLevel.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webserv/log/LogLevel.hpp b/webserv/log/LogLevel.hpp index c3dd2cd..afa09dd 100644 --- a/webserv/log/LogLevel.hpp +++ b/webserv/log/LogLevel.hpp @@ -5,6 +5,10 @@ #include #include +// TODO LOG_LEVEL_MAP should not be in the global namespace, but i do think this is the nice way? lets refactor this to +// the log class or use a seperate namespace + + enum class LogLevel : uint8_t { LOGLVL_TRACE = 0,