mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Logging system rework
* use one central unified log with channels/priorities ad-hoc listener registration and de-registration * disable buffering by default * add multi-threaded ringbuffer implementation * use buffered listener for the gui (using the ringbuffer)
This commit is contained in:
parent
394b698e92
commit
21da317453
165 changed files with 1731 additions and 1519 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/ConLog.h"
|
||||
#include "Utilities/Log.h"
|
||||
#include "SELF.h"
|
||||
#include "ELF64.h"
|
||||
|
||||
|
|
@ -33,7 +33,7 @@ bool SELFLoader::LoadData(u64 offset)
|
|||
!l.LoadShdrInfo(self_hdr.se_shdroff) ||
|
||||
!l.LoadData(self_hdr.se_appinfooff) )
|
||||
{
|
||||
ConLog.Error("Broken SELF file.");
|
||||
LOG_ERROR(LOADER, "Broken SELF file.");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
@ -43,6 +43,6 @@ bool SELFLoader::LoadData(u64 offset)
|
|||
|
||||
return true;
|
||||
|
||||
ConLog.Error("Boot SELF not supported yet!");
|
||||
LOG_ERROR(LOADER, "Boot SELF not supported yet!");
|
||||
return false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue