You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#defineDO_PRINTF_SUPPRESS 0 // SUPPRESS all messages. Use it in the release version.
92
+
#defineDO_PRINTF_CRIT 1 // For the most CRITICAL errors, often requiring a system reset. Use a message with this level, if possible, raising an exception.
93
+
#defineDO_PRINTF_ERROR 2 // ERROR requiring program restart, use message with this level before raising an exception.
94
+
#defineDO_PRINTF_WARN 3 // WARNING, something went wrong, but you can fix it with additional operations in code right now or may ignore it.
95
+
#defineDO_PRINTF_INFO 4 // INFO, it is interesting and useful for understanding a bug.
96
+
#defineDO_PRINTF_DEBUG 5 // DEBUG, more detailed information, dig deeper.
97
+
#defineDO_PRINTF_TRACE 6 // TRACE, show a flow of the algorithm, like enter/exit a function.
0 commit comments