Renamed debug logging param

This commit is contained in:
Nav
2023-09-23 21:48:55 +01:00
parent 7d588b6077
commit 0851da3a7a
3 changed files with 8 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
#include <iostream>
void Logger::configure(const ProjectConfig& projectConfig) {
if (projectConfig.debugLoggingEnabled) {
if (projectConfig.debugLogging) {
Logger::debugPrintingEnabled = true;
Logger::debug("Debug log printing has been enabled");
}