From b2d57ff3653b6f86af187ac4a481d7bbdfb19cb8 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Mon, 13 May 2013 19:25:33 +0200 Subject: [PATCH] VERBOSE a log statement --- Core/FileSystems/MetaFileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/FileSystems/MetaFileSystem.cpp b/Core/FileSystems/MetaFileSystem.cpp index 4393f406c..f8958487a 100644 --- a/Core/FileSystems/MetaFileSystem.cpp +++ b/Core/FileSystems/MetaFileSystem.cpp @@ -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; }