From 1e2cc1eb0a1a42c5cf0d3aa5f63819b8fdb2cdb8 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sat, 13 Apr 2013 13:52:32 -0500 Subject: [PATCH] Moved an Error to a Warning. --- src/SystemData.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/SystemData.cpp b/src/SystemData.cpp index a0c0802c2..14fbf7f9f 100644 --- a/src/SystemData.cpp +++ b/src/SystemData.cpp @@ -9,6 +9,7 @@ #include "AudioManager.h" #include "Log.h" #include "InputManager.h" +#include std::vector SystemData::sSystemVector; @@ -75,9 +76,9 @@ void SystemData::launchGame(Window* window, GameData* game) command = strreplace(command, "%BASENAME%", game->getBaseName()); LOG(LogInfo) << " " << command; - LOG(LogInfo) << "=============================================="; + std::cout << "==============================================\n"; int exitCode = system(command.c_str()); - LOG(LogInfo) << "=============================================="; + std::cout << "==============================================\n"; if(exitCode != 0) { @@ -92,7 +93,7 @@ void SystemData::populateFolder(FolderData* folder) std::string folderPath = folder->getPath(); if(!fs::is_directory(folderPath)) { - LOG(LogError) << "Error - folder with path \"" << folderPath << "\" is not a directory!"; + LOG(LogWarning) << "Error - folder with path \"" << folderPath << "\" is not a directory!"; return; }