Renamed ApplicationConfig to ProjectConfig
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
|
||||
using namespace Bloom;
|
||||
|
||||
void Logger::configure(ApplicationConfig& applicationConfig) {
|
||||
if (applicationConfig.debugLoggingEnabled) {
|
||||
void Logger::configure(ProjectConfig& projectConfig) {
|
||||
if (projectConfig.debugLoggingEnabled) {
|
||||
Logger::debugPrintingEnabled = true;
|
||||
Logger::debug("Debug log printing has been enabled.");
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include <QTimeZone>
|
||||
#include <mutex>
|
||||
|
||||
#include "src/ApplicationConfig.hpp"
|
||||
#include "src/ProjectConfig.hpp"
|
||||
#include "src/Helpers/DateTime.hpp"
|
||||
|
||||
namespace Bloom
|
||||
@@ -53,7 +53,7 @@ namespace Bloom
|
||||
class Logger
|
||||
{
|
||||
public:
|
||||
static void configure(ApplicationConfig& applicationConfig);
|
||||
static void configure(ProjectConfig& projectConfig);
|
||||
|
||||
static void silence();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user