Shipwright/libultraship/libultraship/luslog.cpp
M4xw d24c8453db git subrepo clone https://github.com/HarbourMasters/libultraship.git
subrepo:
  subdir:   "libultraship"
  merged:   "a484cda98"
upstream:
  origin:   "https://github.com/HarbourMasters/libultraship.git"
  branch:   "main"
  commit:   "a484cda98"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2022-03-22 02:52:44 +01:00

22 lines
683 B
C++

#include "spdlog/spdlog.h"
#include <string>
#include "luslog.h"
extern "C" {
void luslog(const char* file, int32_t line, int32_t logLevel, const char* msg) {
std::string str(msg);
spdlog::level::level_enum lvl = (spdlog::level::level_enum)logLevel;
auto loc = spdlog::source_loc{ file, line, SPDLOG_FUNCTION };
spdlog::default_logger_raw()->log(loc, lvl, str);
}
void lusprintf(const char* file, int32_t line, int32_t logLevel, const char* fmt, ...) {
va_list args;
va_start(args, fmt);
char buffer[4096];
vsnprintf(buffer, sizeof(buffer), fmt, args);
luslog(file, line, logLevel, buffer);
}
}