mirror of
https://github.com/wiiu-env/EnvironmentLoader.git
synced 2024-11-27 08:14:14 +01:00
Avoid spamming the logs
This commit is contained in:
parent
bd8992bc11
commit
2054d97e62
@ -15,7 +15,7 @@ bool ElfUtils::doRelocation(const std::vector<std::unique_ptr<RelocationData>> &
|
|||||||
OSDynLoad_Module rplHandle = nullptr;
|
OSDynLoad_Module rplHandle = nullptr;
|
||||||
|
|
||||||
if (!usedRPls.contains(rplName)) {
|
if (!usedRPls.contains(rplName)) {
|
||||||
DEBUG_FUNCTION_LINE_VERBOSE("Acquire %s", rplName.c_str());
|
//DEBUG_FUNCTION_LINE_VERBOSE("Acquire %s", rplName.c_str());
|
||||||
// Always acquire to increase refcount and make sure it won't get unloaded while we're using it.
|
// Always acquire to increase refcount and make sure it won't get unloaded while we're using it.
|
||||||
OSDynLoad_Error err = OSDynLoad_Acquire(rplName.c_str(), &rplHandle);
|
OSDynLoad_Error err = OSDynLoad_Acquire(rplName.c_str(), &rplHandle);
|
||||||
if (err != OS_DYNLOAD_OK) {
|
if (err != OS_DYNLOAD_OK) {
|
||||||
@ -26,7 +26,7 @@ bool ElfUtils::doRelocation(const std::vector<std::unique_ptr<RelocationData>> &
|
|||||||
// They will be released on exit (See: AromaBaseModule)
|
// They will be released on exit (See: AromaBaseModule)
|
||||||
usedRPls[rplName] = rplHandle;
|
usedRPls[rplName] = rplHandle;
|
||||||
} else {
|
} else {
|
||||||
DEBUG_FUNCTION_LINE_VERBOSE("Use from usedRPLs cache! %s", rplName.c_str());
|
//DEBUG_FUNCTION_LINE_VERBOSE("Use from usedRPLs cache! %s", rplName.c_str());
|
||||||
}
|
}
|
||||||
rplHandle = usedRPls[rplName];
|
rplHandle = usedRPls[rplName];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user