From fd85df27167788e78877e24ed4cb364d3acb4449 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 23 Jan 2023 18:06:53 +0100 Subject: [PATCH] Changed the log message on missing game files from error to info. --- es-app/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/main.cpp b/es-app/src/main.cpp index d32fc08b6..b0df80e3e 100644 --- a/es-app/src/main.cpp +++ b/es-app/src/main.cpp @@ -471,8 +471,8 @@ loadSystemsReturnCode loadSystemConfigFile() return INVALID_FILE; if (SystemData::sSystemVector.size() == 0) { - LOG(LogError) << "No game files were found, make sure that the system directories are " - "setup correctly and that the file extensions are supported"; + LOG(LogInfo) << "No game files were found, make sure that the system directories are " + "setup correctly and that the file extensions are supported"; return NO_ROMS; }