invalid current directory should be ERROR_LOG

This commit is contained in:
KentuckyCompass 2012-12-15 03:48:47 -08:00
parent 0639abff6a
commit 17d7e4acf5

View File

@ -148,7 +148,7 @@ bool RealPath(const std::string &currentDirectory, const std::string &inPath, st
const std::string curDirAfter = currentDirectory.substr(curDirColon + 1); const std::string curDirAfter = currentDirectory.substr(curDirColon + 1);
if (! applyPathStringToComponentsVector(cmpnts, curDirAfter) ) if (! applyPathStringToComponentsVector(cmpnts, curDirAfter) )
{ {
DEBUG_LOG(HLE,"RealPath: currentDirectory is not a valid path: \"%s\"", currentDirectory.c_str()); ERROR_LOG(HLE,"RealPath: currentDirectory is not a valid path: \"%s\"", currentDirectory.c_str());
return false; return false;
} }