We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e381ac5 + 8a128e2 commit bfc63afCopy full SHA for bfc63af
1 file changed
components/core/include/app_trace.h
@@ -110,6 +110,7 @@ inline void Trace(const char* section, const char* event, const char* fmt = null
110
#define APP_LOG_WARN(tag, fmt, ...) ::app_trace::Log(::app_trace::Level::kWarning, tag, fmt, ##__VA_ARGS__)
111
#define APP_LOG_INFO(tag, fmt, ...) ::app_trace::Log(::app_trace::Level::kInfo, tag, fmt, ##__VA_ARGS__)
112
#define APP_LOG_DEBUG(tag, fmt, ...) ::app_trace::Log(::app_trace::Level::kDebug, tag, fmt, ##__VA_ARGS__)
113
+#define APP_TRACEI(tag, fmt, ...) APP_LOG_INFO(tag, fmt, ##__VA_ARGS__)
114
115
#define APP_ASSERT(expr) \
116
do { \
0 commit comments