From 7fd3fbadb3b043ff21199ff66d13c9d8aaeddafd Mon Sep 17 00:00:00 2001 From: Brett Date: Sun, 23 Jul 2023 23:21:16 -0400 Subject: [PATCH] change default to not log to file! --- include/blt/std/logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/std/logging.h b/include/blt/std/logging.h index 81217ba..995c8a4 100755 --- a/include/blt/std/logging.h +++ b/include/blt/std/logging.h @@ -76,7 +76,7 @@ namespace blt::logging { // this is not thread safe! bool ensureAlignment = false; // should we log to file? - bool logToFile = true; + bool logToFile = false; // should we log to console? bool logToConsole = true; // where should we log? (empty for current binary directory) should end in a / if not empty!