Turn down some logging.
This commit is contained in:
parent
309f904c0c
commit
a028f07951
3 changed files with 7 additions and 8 deletions
|
@ -55,8 +55,7 @@ int PSPSaveDialog::Init(int paramAddr)
|
|||
|
||||
u32 retval = param.SetPspParam(&request);
|
||||
|
||||
INFO_LOG(SCEUTILITY,"sceUtilitySavedataInitStart(%08x)", paramAddr);
|
||||
INFO_LOG(SCEUTILITY,"Mode: %i", (SceUtilitySavedataType)(u32)param.GetPspParam()->mode);
|
||||
DEBUG_LOG(SCEUTILITY,"sceUtilitySavedataInitStart(%08x) : Mode = %i", paramAddr, (SceUtilitySavedataType)(u32)param.GetPspParam()->mode);
|
||||
|
||||
yesnoChoice = 1;
|
||||
switch ((SceUtilitySavedataFocus)(u32)param.GetPspParam()->focus)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -233,7 +233,7 @@ int sceKernelVolatileMemTryLock(int type, u32 paddr, u32 psize) {
|
|||
|
||||
switch (error) {
|
||||
case 0:
|
||||
INFO_LOG(HLE, "sceKernelVolatileMemTryLock(%i, %08x, %08x) - success", type, paddr, psize);
|
||||
DEBUG_LOG(HLE, "sceKernelVolatileMemTryLock(%i, %08x, %08x) - success", type, paddr, psize);
|
||||
break;
|
||||
|
||||
case ERROR_POWER_VMEM_IN_USE:
|
||||
|
@ -275,7 +275,7 @@ int sceKernelVolatileMemUnlock(int type) {
|
|||
INFO_LOG(HLE, "sceKernelVolatileMemUnlock(%i) handed over to another thread", type);
|
||||
hleReSchedule("volatile mem unlocked");
|
||||
} else {
|
||||
INFO_LOG(HLE, "sceKernelVolatileMemUnlock(%i)", type);
|
||||
DEBUG_LOG(HLE, "sceKernelVolatileMemUnlock(%i)", type);
|
||||
}
|
||||
} else {
|
||||
ERROR_LOG_REPORT(HLE, "sceKernelVolatileMemUnlock(%i) FAILED - not locked", type);
|
||||
|
@ -300,7 +300,7 @@ int sceKernelVolatileMemLock(int type, u32 paddr, u32 psize) {
|
|||
|
||||
switch (error) {
|
||||
case 0:
|
||||
INFO_LOG(HLE, "sceKernelVolatileMemLock(%i, %08x, %08x) - success", type, paddr, psize);
|
||||
DEBUG_LOG(HLE, "sceKernelVolatileMemLock(%i, %08x, %08x) - success", type, paddr, psize);
|
||||
break;
|
||||
|
||||
case ERROR_POWER_VMEM_IN_USE:
|
||||
|
@ -338,7 +338,7 @@ int sceKernelVolatileMemLock(int type, u32 paddr, u32 psize) {
|
|||
|
||||
|
||||
u32 scePowerSetClockFrequency(u32 pllfreq, u32 cpufreq, u32 busfreq) {
|
||||
if(g_Config.iLockedCPUSpeed > 0) {
|
||||
if (g_Config.iLockedCPUSpeed > 0) {
|
||||
INFO_LOG(HLE,"scePowerSetClockFrequency(%i,%i,%i): locked by user config at %i, %i, %i", pllfreq, cpufreq, busfreq, g_Config.iLockedCPUSpeed, g_Config.iLockedCPUSpeed, busFreq);
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue