Skip to content

Commit bfc63af

Browse files
authored
Merge pull request #101 from baba-dev/codex/replace-app_tracei-with-logging-helper
fix: map APP_TRACEI to APP_LOG_INFO
2 parents e381ac5 + 8a128e2 commit bfc63af

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

components/core/include/app_trace.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ inline void Trace(const char* section, const char* event, const char* fmt = null
110110
#define APP_LOG_WARN(tag, fmt, ...) ::app_trace::Log(::app_trace::Level::kWarning, tag, fmt, ##__VA_ARGS__)
111111
#define APP_LOG_INFO(tag, fmt, ...) ::app_trace::Log(::app_trace::Level::kInfo, tag, fmt, ##__VA_ARGS__)
112112
#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__)
113114

114115
#define APP_ASSERT(expr) \
115116
do { \

0 commit comments

Comments
 (0)