mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Added some additional error logging for ScreenScraper.
This commit is contained in:
parent
8233e2704e
commit
9b7ad8966e
2
NEWS.md
2
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
|
||||
|
|
|
@ -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 <pugixml.hpp>
|
||||
|
||||
#include <cstring>
|
||||
#include <pugixml.hpp>
|
||||
|
||||
using namespace PlatformIds;
|
||||
|
||||
|
@ -193,6 +194,9 @@ void ScreenScraperRequest::process(const std::unique_ptr<HttpReq>& req,
|
|||
setError(err);
|
||||
LOG(LogError) << err;
|
||||
|
||||
LOG(LogError) << "ScreenScraperRequest - Additional information:";
|
||||
LOG(LogError) << req->getContent();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue