mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Remove legacy GENERAL log channel
Add some more log channels instead.
This commit is contained in:
parent
efafda2650
commit
d9a0619ddd
26 changed files with 269 additions and 221 deletions
|
|
@ -5,6 +5,8 @@
|
|||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
|
||||
LOG_CHANNEL(tar_log);
|
||||
|
||||
tar_object::tar_object(const fs::file& file, size_t offset)
|
||||
: m_file(file)
|
||||
, initial_offset(static_cast<int>(offset))
|
||||
|
|
@ -124,7 +126,7 @@ bool tar_object::extract(std::string path, std::string ignore)
|
|||
}
|
||||
|
||||
default:
|
||||
LOG_ERROR(GENERAL, "TAR Loader: unknown file type: 0x%x", header.filetype);
|
||||
tar_log.error("TAR Loader: unknown file type: 0x%x", header.filetype);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue