diff --git a/source/ElfUtils.cpp b/source/ElfUtils.cpp index 48a8a9e..b9e3dda 100644 --- a/source/ElfUtils.cpp +++ b/source/ElfUtils.cpp @@ -15,7 +15,7 @@ bool ElfUtils::doRelocation(const std::vector> & OSDynLoad_Module rplHandle = nullptr; 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. OSDynLoad_Error err = OSDynLoad_Acquire(rplName.c_str(), &rplHandle); if (err != OS_DYNLOAD_OK) { @@ -26,7 +26,7 @@ bool ElfUtils::doRelocation(const std::vector> & // They will be released on exit (See: AromaBaseModule) usedRPls[rplName] = rplHandle; } 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];