From d2993fc641e11bb8a85b714c5caafdf67d08be33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E5=9B=BD=E5=86=9B?= Date: Wed, 29 Oct 2025 18:42:56 +0800 Subject: [PATCH] fix log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 任国军 --- frameworks/native/appkit/app/main_thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/native/appkit/app/main_thread.cpp b/frameworks/native/appkit/app/main_thread.cpp index 122dd67730..68e561c662 100644 --- a/frameworks/native/appkit/app/main_thread.cpp +++ b/frameworks/native/appkit/app/main_thread.cpp @@ -4233,7 +4233,7 @@ bool MainThread::IsPluginNamespaceInherited() std::vector MainThread::ParsePluginDefaultNamespaceLdDictionary() { auto pluginDefaultNamespaceLdDictionary_ = system::GetParameter(PLUGIN_DEFAULT_NAMESPACE_LDDICTIONARY, ""); - TAG_LOGD(AAFwkTag::APPKIT, "plugin_default_namespace_lddictionary: %{public}d", pluginDefaultNamespaceLdDictionary_); + TAG_LOGD(AAFwkTag::APPKIT, "plugin_default_namespace_lddictionary: %{public}s", pluginDefaultNamespaceLdDictionary_.c_str()); std::vector result; SplitStr(pluginDefaultNamespaceLdDictionary_, ":", result); return result;