diff --git a/NEWS.md b/NEWS.md index 67a174b8b..3194297c0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -41,7 +41,7 @@ Many bugs have been fixed, and numerous features that were only partially implem * Speed improvements and optimizations, the application now starts faster and feels more responsive * Added metadata entry to mark games as broken/not working * Added metadata entry to indicate whether the file should be counted as a game (for example useful to exclude setup files and similar for DOS games) -* Added a button to the metadata editor to delete the media files for a game while retaining the game itself and the gamelist.xml entry +* Added a button to the metadata editor to delete the media files for a game or folder while retaining the game file and gamelist.xml entry * Moved all resources to a subdirectory structure and enabled the CMake install prefix variable to generate the resources search path * Changed theme directory to the install prefix (e.g. /usr/local/share/emulationstation/themes) with themes in the home directory taking precedence * No more attempts to open files directly under /etc, instead only the install prefix directory and the home directory are used diff --git a/es-app/src/scrapers/ScreenScraper.cpp b/es-app/src/scrapers/ScreenScraper.cpp index 36fc589b5..95807f3ce 100644 --- a/es-app/src/scrapers/ScreenScraper.cpp +++ b/es-app/src/scrapers/ScreenScraper.cpp @@ -7,16 +7,17 @@ #include "scrapers/ScreenScraper.h" -#include "utils/TimeUtil.h" +#include "math/Misc.h" #include "utils/StringUtil.h" +#include "utils/TimeUtil.h" #include "FileData.h" #include "Log.h" #include "PlatformId.h" #include "Settings.h" #include "SystemData.h" -#include "math/Misc.h" -#include + #include +#include using namespace PlatformIds; @@ -193,6 +194,9 @@ void ScreenScraperRequest::process(const std::unique_ptr& req, setError(err); LOG(LogError) << err; + LOG(LogError) << "ScreenScraperRequest - Additional information:"; + LOG(LogError) << req->getContent(); + return; }