diff --git a/Common/ChunkFile.cpp b/Common/ChunkFile.cpp index e33bf07e7..bc59525a1 100644 --- a/Common/ChunkFile.cpp +++ b/Common/ChunkFile.cpp @@ -162,8 +162,6 @@ PointerWrapSection::~PointerWrapSection() { } CChunkFileReader::Error CChunkFileReader::LoadFile(const std::string& _rFilename, int _Revision, const char *_VersionString, u8 *&_buffer, size_t &sz, std::string *_failureReason) { - INFO_LOG(COMMON, "ChunkReader: Loading %s" , _rFilename.c_str()); - if (!File::Exists(_rFilename)) { *_failureReason = "LoadStateDoesntExist"; ERROR_LOG(COMMON, "ChunkReader: File doesn't exist"); diff --git a/Core/FileSystems/DirectoryFileSystem.cpp b/Core/FileSystems/DirectoryFileSystem.cpp index d887ccb00..a313c7d81 100644 --- a/Core/FileSystems/DirectoryFileSystem.cpp +++ b/Core/FileSystems/DirectoryFileSystem.cpp @@ -766,7 +766,6 @@ void DirectoryFileSystem::DoState(PointerWrap &p) { VFSFileSystem::VFSFileSystem(IHandleAllocator *_hAlloc, std::string _basePath) : basePath(_basePath) { - INFO_LOG(FILESYS, "Creating VFS file system"); hAlloc = _hAlloc; } @@ -832,7 +831,6 @@ PSPFileInfo VFSFileSystem::GetFileInfo(std::string filename) { x.name = filename; std::string fullName = GetLocalPath(filename); - INFO_LOG(FILESYS,"Getting VFS file info %s (%s)", fullName.c_str(), filename.c_str()); FileInfo fo; if (VFSGetFileInfo(fullName.c_str(), &fo)) { x.exists = fo.exists; @@ -843,7 +841,6 @@ PSPFileInfo VFSFileSystem::GetFileInfo(std::string filename) { } else { x.exists = false; } - INFO_LOG(FILESYS,"Got VFS file info: size = %i", (int)x.size); return x; } @@ -872,7 +869,7 @@ int VFSFileSystem::DevType(u32 handle) { } size_t VFSFileSystem::ReadFile(u32 handle, u8 *pointer, s64 size) { - INFO_LOG(FILESYS,"VFSFileSystem::ReadFile %08x %p %i", handle, pointer, (u32)size); + DEBUG_LOG(FILESYS,"VFSFileSystem::ReadFile %08x %p %i", handle, pointer, (u32)size); EntryMap::iterator iter = entries.find(handle); if (iter != entries.end()) { diff --git a/Core/Font/PGF.cpp b/Core/Font/PGF.cpp index 03be1407f..e10ab160e 100644 --- a/Core/Font/PGF.cpp +++ b/Core/Font/PGF.cpp @@ -182,7 +182,7 @@ bool PGF::ReadPtr(const u8 *ptr, size_t dataSize) { return false; } - INFO_LOG(SCEFONT, "Reading %d bytes of PGF header", (int)sizeof(header)); + DEBUG_LOG(SCEFONT, "Reading %d bytes of PGF header", (int)sizeof(header)); memcpy(&header, ptr, sizeof(header)); ptr += sizeof(header); diff --git a/Core/HLE/sceFont.cpp b/Core/HLE/sceFont.cpp index dc879ad69..78b9a9c27 100644 --- a/Core/HLE/sceFont.cpp +++ b/Core/HLE/sceFont.cpp @@ -662,7 +662,7 @@ void __LoadInternalFonts() { } if (info.exists) { - INFO_LOG(SCEFONT, "Loading font %s (%i bytes)", fontFilename.c_str(), (int)info.size); + DEBUG_LOG(SCEFONT, "Loading internal font %s (%i bytes)", fontFilename.c_str(), (int)info.size); std::vector buffer; if (pspFileSystem.ReadEntireFile(fontFilename, buffer) < 0) { ERROR_LOG(SCEFONT, "Failed opening font");