3#include "ncutility/platform/SourceLocation.h"
12void LogException(
const std::exception& e)
noexcept;
14constexpr auto TrimToFilename(
const char* path)
noexcept ->
const char*
16 constexpr auto separator =
17 #if defined(_WIN32) && ! defined(__MINGW32__)
26 if (*path++ == separator)
34#define NC_LOG_CAPTURE_DEFAULT_ARGS(...) \
35"NcEngine", nc::detail::TrimToFilename(NC_SOURCE_FILE), NC_SOURCE_LINE, fmt::format(__VA_ARGS__)
37#define NC_LOG_FMT_MSG(category, subsystem, file, line, msg) \
39 ? fmt::format("{} [{}] {}\n", std::to_underlying(category), subsystem, msg) \
40 : fmt::format("{} [{}] {}:{}: {}\n", std::to_underlying(category), subsystem, file, line, msg) \
43#define NC_VA_OPT_SUPPORTED_SELECT(a,b,c,...) c
44#define NC_VA_OPT_SUPPORTED_IMPL(...) NC_VA_OPT_SUPPORTED_SELECT(__VA_OPT__(,),true,false,)
45#define NC_VA_OPT_SUPPORTED NC_VA_OPT_SUPPORTED_IMPL(?)
47#if NC_VA_OPT_SUPPORTED
48 #define NC_OPT_EXPAND(...) __VA_OPT__(,) __VA_ARGS__
49#elif defined(__GNUC__)
50 #define NC_OPT_EXPAND(...) , ##__VA_ARGS__
52 #define NC_OPT_EXPAND(...) , __VA_ARGS__