Add macro for TRACE logging

This commit is contained in:
Alex Groce 2018-12-22 13:52:18 -07:00
parent 7756c80d63
commit 7efe5f84ad

View File

@ -521,6 +521,9 @@ struct Comparer {
#define LOG_DEBUG(cond) \
::deepstate::Stream(DeepState_LogDebug, (cond), __FILE__, __LINE__)
#define LOG_TRACE(cond) \
::deepstate::Stream(DeepState_LogTrace, (cond), __FILE__, __LINE__)
#define LOG_INFO(cond) \
::deepstate::Stream(DeepState_LogInfo, (cond), __FILE__, __LINE__)