NcEngine
Log.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "detail/LogInternal.h"
8
9#include <string_view>
10
11namespace nc
12{
14enum class LogCategory : char
15{
16 Info = 'I',
17 Warning = 'W',
18 Error = 'E',
19 Verbose = 'V'
20};
21
23using LogCallback_t = void(*)(LogCategory category,
24 std::string_view subsystem,
25 std::string_view function,
26 int line,
27 std::string_view message);
28
31
33namespace detail
34{
35extern LogCallback_t LogCallback;
36
37void DefaultLogCallback(LogCategory category,
38 std::string_view subsystem,
39 std::string_view function,
40 int line,
41 std::string_view message);
42} // namespace detail
44} // namespace nc
45
46#if NC_LOG_LEVEL >= 1
47 #define NC_LOG_INFO(str, ...) nc::detail::LogCallback(nc::LogCategory::Info, NC_LOG_CAPTURE_DEFAULT_ARGS(str NC_OPT_EXPAND(__VA_ARGS__)));
48 #define NC_LOG_WARNING(str, ...) nc::detail::LogCallback(nc::LogCategory::Warning, NC_LOG_CAPTURE_DEFAULT_ARGS(str NC_OPT_EXPAND(__VA_ARGS__)));
49 #define NC_LOG_ERROR(str, ...) nc::detail::LogCallback(nc::LogCategory::Error, NC_LOG_CAPTURE_DEFAULT_ARGS(str NC_OPT_EXPAND(__VA_ARGS__)));
50 #define NC_LOG_EXCEPTION(exception) nc::detail::LogException(exception);
51
52 #define NC_LOG_INFO_EXT(subsystem, file, line, str) nc::detail::LogCallback(nc::LogCategory::Info, subsystem, file, line, str);
53 #define NC_LOG_WARNING_EXT(subsystem, file, line, str) nc::detail::LogCallback(nc::LogCategory::Warning, subsystem, file, line, str);
54 #define NC_LOG_ERROR_EXT(subsystem, file, line, str) nc::detail::LogCallback(nc::LogCategory::Error, subsystem, file, line, str);
55#else
56 #define NC_LOG_INFO(str, ...);
57 #define NC_LOG_WARNING(str, ...);
58 #define NC_LOG_ERROR(str, ...);
59 #define NC_LOG_EXCEPTION(exception);
60
61 #define NC_LOG_INFO_EXT(subsystem, file, line, str);
62 #define NC_LOG_WARNING_EXT(subsystem, file, line, str);
63 #define NC_LOG_ERROR_EXT(subsystem, file, line, str);
64#endif
65
66#if NC_LOG_LEVEL >= 2
67 #define NC_LOG_TRACE(str, ...) nc::detail::LogCallback(nc::LogCategory::Verbose, NC_LOG_CAPTURE_DEFAULT_ARGS(str NC_OPT_EXPAND(__VA_ARGS__)));
68 #define NC_LOG_TRACE_EXT(subsystem, file, line, str) nc::detail::LogCallback(nc::LogCategory::Verbose, subsystem, file, line, str);
69#else
70 #define NC_LOG_TRACE(str, ...);
71 #define NC_LOG_TRACE_EXT(subsystem, file, line, str);
72#endif
void SetLogCallback(LogCallback_t callback)
Set a callback to reroute logging messages (defaults to stdout).
void(*)(LogCategory category, std::string_view subsystem, std::string_view function, int line, std::string_view message) LogCallback_t
Function type for receiving logging messages.
Definition: Log.h:27
LogCategory
Type of a log message.
Definition: Log.h:15