From 8ce22fd53a0c0983fa584302f9fab259e2ecf4e8 Mon Sep 17 00:00:00 2001 From: Brett Date: Sat, 22 Jul 2023 12:55:44 -0400 Subject: [PATCH] Add STREAM macro varaints to the disabled logging section --- include/blt/std/logging.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/blt/std/logging.h b/include/blt/std/logging.h index 0a2fb14..19ee9cf 100755 --- a/include/blt/std/logging.h +++ b/include/blt/std/logging.h @@ -618,6 +618,16 @@ namespace blt::logging { #ifdef BLT_DISABLE_LOGGING #define BLT_LOG(format, level, ...) #define BLT_LOG_STREAM(level) + #define BLT_TRACE0_STREAM + #define BLT_TRACE1_STREAM + #define BLT_TRACE2_STREAM + #define BLT_TRACE3_STREAM + #define BLT_TRACE_STREAM + #define BLT_DEBUG_STREAM + #define BLT_INFO_STREAM + #define BLT_WARN_STREAM + #define BLT_ERROR_STREAM + #define BLT_FATAL_STREAM #define BLT_TRACE(format, ...) #define BLT_DEBUG(format, ...) #define BLT_INFO(format, ...)