From 5d53910127e65232ed45199f65f3535d9eabb92f Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sat, 23 Oct 2021 09:40:40 +0100 Subject: [PATCH] Verbose log base/pref/config/assets paths --- Source/init.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/init.cpp b/Source/init.cpp index 4221955d1..4dd545327 100644 --- a/Source/init.cpp +++ b/Source/init.cpp @@ -160,6 +160,9 @@ void init_archives() paths.emplace_back(""); // PWD if (SDL_LOG_PRIORITY_VERBOSE >= SDL_LogGetPriority(SDL_LOG_CATEGORY_APPLICATION)) { + LogVerbose("Paths:\n base: {}\n pref: {}\n config: {}\n assets: {}", + paths::BasePath(), paths::PrefPath(), paths::ConfigPath(), paths::AssetsPath()); + std::string message; for (std::size_t i = 0; i < paths.size(); ++i) { char prefix[32];