This commit is contained in:
Nav
2022-08-13 03:06:44 +01:00
parent 2372b93e11
commit 4e109483e8
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
namespace Bloom namespace Bloom
{ {
void Logger::configure(ProjectConfig& projectConfig) { void Logger::configure(const ProjectConfig& projectConfig) {
if (projectConfig.debugLoggingEnabled) { if (projectConfig.debugLoggingEnabled) {
Logger::debugPrintingEnabled = true; Logger::debugPrintingEnabled = true;
Logger::debug("Debug log printing has been enabled"); Logger::debug("Debug log printing has been enabled");

View File

@@ -59,7 +59,7 @@ namespace Bloom
class Logger class Logger
{ {
public: public:
static void configure(ProjectConfig& projectConfig); static void configure(const ProjectConfig& projectConfig);
static void silence(); static void silence();