VERBOSE a log statement

This commit is contained in:
Henrik Rydgard 2013-05-13 19:25:33 +02:00
parent f864e81e72
commit b2d57ff365

View File

@ -200,7 +200,7 @@ bool MetaFileSystem::MapFilePath(const std::string &_inpath, std::string &outpat
outpath = realpath.substr(prefLen);
*system = &(fileSystems[i]);
DEBUG_LOG(HLE, "MapFilePath: mapped \"%s\" to prefix: \"%s\", path: \"%s\"", inpath.c_str(), fileSystems[i].prefix.c_str(), outpath.c_str());
VERBOSE_LOG(HLE, "MapFilePath: mapped \"%s\" to prefix: \"%s\", path: \"%s\"", inpath.c_str(), fileSystems[i].prefix.c_str(), outpath.c_str());
return true;
}