Logging improvements & other cleanup (#227)

This commit is contained in:
Ken Van Hoeylandt
2025-02-21 14:38:51 +01:00
committed by GitHub
parent 933bc5fb97
commit d29e47f0eb
7 changed files with 40 additions and 31 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
namespace tt {
struct LogEntry {
LogLevel level = LogLevel::None;
LogLevel level = LogLevel::Verbose;
char message[TT_LOG_MESSAGE_SIZE] = { 0 };
};
@@ -4,7 +4,6 @@ namespace tt {
/** Used for log output filtering */
enum class LogLevel : int {
None = 0, /*!< No log output */
Error, /*!< Critical errors, software module can not recover on its own */
Warning, /*!< Error conditions from which recovery measures have been taken */
Info, /*!< Information messages which describe normal flow of events */