Turn down some logging.

This commit is contained in:
Henrik Rydgard
2013-11-08 18:52:07 +01:00
parent 309f904c0c
commit a028f07951
3 changed files with 7 additions and 8 deletions
+2 -2
View File
@@ -163,7 +163,7 @@ bool DirectoryFileHandle::Open(std::string& basePath, std::string& fileName, Fil
#endif
std::string fullName = GetLocalPath(basePath,fileName);
INFO_LOG(FILESYS,"Actually opening %s", fullName.c_str());
DEBUG_LOG(FILESYS,"Actually opening %s", fullName.c_str());
//TODO: tests, should append seek to end of file? seeking in a file opened for append?
#ifdef _WIN32
@@ -716,7 +716,7 @@ u32 VFSFileSystem::OpenFile(std::string filename, FileAccess access, const char
std::string fullName = GetLocalPath(filename);
const char *fullNameC = fullName.c_str();
INFO_LOG(FILESYS,"VFSFileSystem actually opening %s (%s)", fullNameC, filename.c_str());
DEBUG_LOG(FILESYS,"VFSFileSystem actually opening %s (%s)", fullNameC, filename.c_str());
size_t size;
u8 *data = VFSReadFile(fullNameC, &size);