diff --git a/SNP/Config.h b/SNP/Config.h index 71fcacdd..602a562a 100644 --- a/SNP/Config.h +++ b/SNP/Config.h @@ -116,7 +116,7 @@ class SnpConfigLoader { {"log-level", config.log_level}, }; - if (m_config_existed) { + if (!m_config_existed) { spdlog::info("Creating new config at {}", m_path.string()); } else { spdlog::info("Updating config at {}", m_path.string()); @@ -148,6 +148,6 @@ class SnpConfigLoader { }; inline SnpConfig& SnpConfig::instance() { - static SnpConfig config = SnpConfigLoader{"CrownLink.json"}.load(); + static SnpConfig config = SnpConfigLoader{"OldLink.json"}.load(); return config; } \ No newline at end of file diff --git a/shared_common.h b/shared_common.h index 1dea1939..65af5b5a 100644 --- a/shared_common.h +++ b/shared_common.h @@ -1,6 +1,6 @@ #pragma once -constexpr const char* CL_VERSION = "0.4.0"; +constexpr const char* CL_VERSION = "0.4.1"; #include #include