Skip to content

Commit

Permalink
Fix for compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KenVanHoeylandt committed Jan 21, 2025
1 parent c1819fb commit f968d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TactilityCore/Source/Log.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void log(LogLevel level, const char* tag, const char* format, ...);
tt::log(tt::LogLevel::Info, tag, format, ##__VA_ARGS__)
#define TT_LOG_D(tag, format, ...) \
tt::log(tt::LogLevel::Debug, tag, format, ##__VA_ARGS__)
#define TT_LOG_T(tag, format, ...) \
#define TT_LOG_V(tag, format, ...) \
tt::log(tt::LogLevel::Trace, tag, format, ##__VA_ARGS__)

#endif // ESP_TARGET

0 comments on commit f968d83

Please sign in to comment.