From 49d9705b1ffae0d03dfea6288a588c10f6cb3ef8 Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Thu, 9 Mar 2023 03:56:14 +0200 Subject: [PATCH] OutputDebugStirng logger should be on by default --- include/logger.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/logger.hpp b/include/logger.hpp index 655a83ce..bea46f76 100644 --- a/include/logger.hpp +++ b/include/logger.hpp @@ -19,7 +19,7 @@ namespace Log { // Our loggers here. Enable/disable by toggling the template param static Logger kernelLogger; - static Logger debugStringLogger; // Enables output for the outputDebugString SVC + static Logger debugStringLogger; // Enables output for the outputDebugString SVC static Logger errorLogger; static Logger fileIOLogger; static Logger svcLogger;