From 9dfd21ded46438b9c36d15f0fd018c35e55710a8 Mon Sep 17 00:00:00 2001 From: dingding Date: Sat, 12 Apr 2025 15:20:59 +0800 Subject: [PATCH] Change LOG Level of AOT Entrypoint Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/IC0LWP Signed-off-by: dingding --- static_core/runtime/class_linker.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static_core/runtime/class_linker.cpp b/static_core/runtime/class_linker.cpp index 7cfa0ebb22..cad9d9876e 100644 --- a/static_core/runtime/class_linker.cpp +++ b/static_core/runtime/class_linker.cpp @@ -441,10 +441,10 @@ static void MaybeLinkMethodToAotCode(Method *method, const compiler::AotClass &a auto entry = aotClass.FindMethodCodeEntry(methodIndex); if (entry != nullptr) { method->SetCompiledEntryPoint(entry); - LOG(INFO, AOT) << "Found AOT entrypoint [" - << reinterpret_cast(aotClass.FindMethodCodeSpan(methodIndex).data()) << ":" - << reinterpret_cast(aotClass.FindMethodCodeSpan(methodIndex).end()) - << "] for method: " << method->GetFullName(); + LOG(DEBUG, AOT) << "Found AOT entrypoint [" + << reinterpret_cast(aotClass.FindMethodCodeSpan(methodIndex).data()) << ":" + << reinterpret_cast(aotClass.FindMethodCodeSpan(methodIndex).end()) + << "] for method: " << method->GetFullName(); EVENT_AOT_ENTRYPOINT_FOUND(method->GetFullName()); ASSERT(aotClass.FindMethodHeader(methodIndex)->methodId == method->GetFileId().GetOffset()); -- Gitee