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!");