Go to the source code of this file.
|
template<typename... Args> |
void | FLOG (std::string_view a_Format, const Args &... args) |
|
template<typename... Args> |
void | FLOGERROR (std::string_view a_Format, const Args &... args) |
|
template<typename... Args> |
void | FLOGINFO (std::string_view a_Format, const Args &... args) |
|
template<typename... Args> |
void | FLOGWARNING (std::string_view a_Format, const Args &... args) |
|
template<typename... Args> |
void | LOG (std::string_view a_Format, const Args &... args) |
|
template<typename... Args> |
void | LOGERROR (std::string_view a_Format, const Args &... args) |
|
void | Logger::LogFormat (std::string_view a_Format, eLogLevel a_LogLevel, fmt::format_args a_ArgList) |
|
template<typename... Args> |
void | LOGINFO (std::string_view a_Format, const Args &... args) |
|
void | Logger::LogPrintf (std::string_view a_Format, eLogLevel a_LogLevel, fmt::printf_args a_ArgList) |
|
void | Logger::LogSimple (std::string_view a_Message, eLogLevel a_LogLevel) |
|
template<typename... Args> |
void | LOGWARNING (std::string_view a_Format, const Args &... args) |
|
◆ CONDWARNING
#define CONDWARNING |
( |
|
ShouldLog, |
|
|
|
... |
|
) |
| |
Value: do { \
if (ShouldLog) \
{ \
LOGWARNING(__VA_ARGS__); \
} \
} while (false)
Definition at line 99 of file LoggerSimple.h.
◆ FLOGD
◆ FLOGWARN
◆ LOGD
◆ LOGWARN
◆ eLogLevel
Enumerator |
---|
Regular | |
Info | |
Warning | |
Error | |
Definition at line 5 of file LoggerSimple.h.
◆ FLOG()
template<typename... Args>
void FLOG |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ FLOGERROR()
template<typename... Args>
void FLOGERROR |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ FLOGINFO()
template<typename... Args>
void FLOGINFO |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ FLOGWARNING()
template<typename... Args>
void FLOGWARNING |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ LOG()
template<typename... Args>
void LOG |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ LOGERROR()
template<typename... Args>
void LOGERROR |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ LOGINFO()
template<typename... Args>
void LOGINFO |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |
◆ LOGWARNING()
template<typename... Args>
void LOGWARNING |
( |
std::string_view |
a_Format, |
|
|
const Args &... |
args |
|
) |
| |