From 4f03d21deaa6d1610ab8f42db2e0cb3a73303f4b Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Thu, 14 Nov 2024 11:12:19 +0100 Subject: [PATCH] Move mod caching directory log --- src/Config.cpp | 1 - src/main.cpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.cpp b/src/Config.cpp index 0900915..e63fe30 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -30,7 +30,6 @@ void ParseConfig(const nlohmann::json& d) { } if (d.contains("CachingDirectory") && d["CachingDirectory"].is_string()) { CachingDirectory = d["CachingDirectory"].get(); - info("Mod caching directory: " + CachingDirectory); } if (d.contains("Dev") && d["Dev"].is_boolean()) { diff --git a/src/main.cpp b/src/main.cpp index e7e7048..c35b91b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -43,6 +43,7 @@ int main(int argc, const char** argv) try { InitLog(); ConfigInit(); InitOptions(argc, argv, options); + info("Mod caching directory: " + CachingDirectory); InitLauncher(); info("IMPORTANT: You MUST keep this window open to play BeamMP!");