diff --git a/es-app/src/CollectionSystemsManager.cpp b/es-app/src/CollectionSystemsManager.cpp index 629790315..4b9c68722 100644 --- a/es-app/src/CollectionSystemsManager.cpp +++ b/es-app/src/CollectionSystemsManager.cpp @@ -1236,7 +1236,12 @@ void CollectionSystemsManager::populateCustomCollection(CollectionSystemData* sy LOG(LogInfo) << "Couldn't find custom collection config file \"" << path << "\""; return; } +#if defined(_WIN64) + LOG(LogInfo) << "Parsing custom collection file \"" << Utils::String::replace(path, "/", "\\") + << "\"..."; +#else LOG(LogInfo) << "Parsing custom collection file \"" << path << "\"..."; +#endif FileData* rootFolder {newSys->getRootFolder()}; FileFilterIndex* index {newSys->getIndex()}; diff --git a/es-app/src/scrapers/Scraper.cpp b/es-app/src/scrapers/Scraper.cpp index 22e8543d3..c87231f77 100644 --- a/es-app/src/scrapers/Scraper.cpp +++ b/es-app/src/scrapers/Scraper.cpp @@ -507,7 +507,11 @@ void MediaDownloadHandle::update() if (emptyImage) { LOG(LogWarning) << "ScreenScraper: Image does not seem to contain any data, not saving " "it to disk: \"" +#if defined(_WIN64) + << Utils::String::replace(mSavePath, "/", "\\") << "\""; +#else << mSavePath << "\""; +#endif setStatus(ASYNC_DONE); return; }