diff options
Diffstat (limited to 'src/crepe/util/log.cpp')
-rw-r--r-- | src/crepe/util/log.cpp | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/src/crepe/util/log.cpp b/src/crepe/util/log.cpp index ba12ba5..e3e9f1f 100644 --- a/src/crepe/util/log.cpp +++ b/src/crepe/util/log.cpp @@ -3,6 +3,7 @@ #include <cstdlib> #include <string> +#include "fmt.h" #include "log.h" #include "../api/Config.h" @@ -16,40 +17,30 @@ static const char * const LOG_PREFIX[] = { [log_level::ERROR] = "[ERROR] ", }; -static void va_logf(enum log_level level, va_list args, const std::string fmt) { +static void log(enum log_level level, const std::string msg) { auto & cfg = crepe::api::Config::get_instance(); if (level < cfg.log.level) return; - va_list args_copy; - va_copy(args_copy, args); - - // prepend log level and ensure newline - std::string format_fixed = LOG_PREFIX[level] + fmt; - if (!format_fixed.ends_with("\n")) format_fixed += "\n"; - - size_t sz = vsnprintf(NULL, 0, format_fixed.c_str(), args_copy) + 1; - char * msg = (char *) malloc(sz); - va_end(args_copy); - - vsnprintf(msg, sz, format_fixed.c_str(), args); + using namespace std; + string final = string(LOG_PREFIX[level]) + msg; + if (!final.ends_with("\n")) final += "\n"; // TODO: also log to file or smth - printf("%s", msg); + printf("%s", final.c_str()); fflush(stdout); - - free(msg); } void crepe::util::logf(const char * fmt, ...) { va_list args; va_start(args, fmt); - va_logf(crepe::util::log_level::DEBUG, args, fmt); + log(log_level::DEBUG, va_stringf(args, fmt)); va_end(args); } void crepe::util::logf(log_level level, const char * fmt, ...) { va_list args; va_start(args, fmt); - va_logf(level, args, fmt); + log(level, va_stringf(args, fmt)); va_end(args); } + |