mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
Request the proper string variant.
This commit is contained in:
parent
a111150e7e
commit
5b07e28030
@ -80,7 +80,7 @@ _FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1, C p2, D p3, E
|
|||||||
|
|
||||||
#define RLOG_MSGP(...) \
|
#define RLOG_MSGP(...) \
|
||||||
{ \
|
{ \
|
||||||
String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \
|
String *_rlogger_string_ptr = RLogger::get_message_string_ptr(__FUNCTION__, __FILE__, __LINE__); \
|
||||||
_RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \
|
_RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \
|
||||||
RLogger::log_ret_ptr(_rlogger_string_ptr); \
|
RLogger::log_ret_ptr(_rlogger_string_ptr); \
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ _FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1, C p2, D p3, E
|
|||||||
|
|
||||||
#define RLOG_WARNP(...) \
|
#define RLOG_WARNP(...) \
|
||||||
{ \
|
{ \
|
||||||
String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \
|
String *_rlogger_string_ptr = RLogger::get_warning_string_ptr(__FUNCTION__, __FILE__, __LINE__); \
|
||||||
_RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \
|
_RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \
|
||||||
RLogger::log_ret_ptr(_rlogger_string_ptr); \
|
RLogger::log_ret_ptr(_rlogger_string_ptr); \
|
||||||
}
|
}
|
||||||
@ -100,7 +100,7 @@ _FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1, C p2, D p3, E
|
|||||||
|
|
||||||
#define RLOG_ERRP(...) \
|
#define RLOG_ERRP(...) \
|
||||||
{ \
|
{ \
|
||||||
String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \
|
String *_rlogger_string_ptr = RLogger::get_error_string_ptr(__FUNCTION__, __FILE__, __LINE__); \
|
||||||
_RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \
|
_RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \
|
||||||
RLogger::log_ret_ptr(_rlogger_string_ptr); \
|
RLogger::log_ret_ptr(_rlogger_string_ptr); \
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user