Add TODO comment for refactoring LOG_LEVEL_MAP to a separate namespace or log class

This commit is contained in:
whaffman 2025-09-21 00:00:42 +02:00
parent 8e0ae154b6
commit f066f46021

View File

@ -5,6 +5,10 @@
#include <string> #include <string>
#include <string_view> #include <string_view>
// 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 enum class LogLevel : uint8_t
{ {
LOGLVL_TRACE = 0, LOGLVL_TRACE = 0,