diff --git a/frameworks/js/napi/file_access_module/native_fileaccess_module.cpp b/frameworks/js/napi/file_access_module/native_fileaccess_module.cpp index 9f581effda363cafd13753122e847f3295b544d3..bfc3fc8013dc4e95e8032eb53ec863fe879b3039 100644 --- a/frameworks/js/napi/file_access_module/native_fileaccess_module.cpp +++ b/frameworks/js/napi/file_access_module/native_fileaccess_module.cpp @@ -58,7 +58,7 @@ static napi_value Init(napi_env env, napi_value exports) HILOG_ERROR("INNER BUG. Failed to export class %{public}s", product->GetClassName().c_str()); return nullptr; } else { - HILOG_ERROR("Class %{public}s has been exported", product->GetClassName().c_str()); + HILOG_DEBUG("Class %{public}s has been exported", product->GetClassName().c_str()); } } diff --git a/interfaces/kits/native/recent/module.cpp b/interfaces/kits/native/recent/module.cpp index caab0182e66e24e273fe6847367d6d780742fd46..bc4fb3d74fc16d1f8ac10b87aa7b52afa2b696f0 100644 --- a/interfaces/kits/native/recent/module.cpp +++ b/interfaces/kits/native/recent/module.cpp @@ -34,7 +34,7 @@ static napi_value Export(napi_env env, napi_value exports) product->GetClassName().c_str()); return nullptr; } else { - HILOG_INFO("Class %{public}s for module fileio has been exported", product->GetClassName().c_str()); + HILOG_DEBUG("Class %{public}s for module fileio has been exported", product->GetClassName().c_str()); } } diff --git a/interfaces/kits/native/trash/module.cpp b/interfaces/kits/native/trash/module.cpp index c26c433cc32a5f8d47bc5811bbbd24d9a99db42e..0dd8395c5e0eb2e510c84e1d08cd15208a8aef5b 100644 --- a/interfaces/kits/native/trash/module.cpp +++ b/interfaces/kits/native/trash/module.cpp @@ -38,7 +38,7 @@ static napi_value Export(napi_env env, napi_value exports) HILOG_ERROR("INNER BUG. Failed to export class %{public}s for module trash", nExporterName.c_str()); return nullptr; } else { - HILOG_INFO("Class %{public}s for module trash has been exported", nExporterName.c_str()); + HILOG_DEBUG("Class %{public}s for module trash has been exported", nExporterName.c_str()); } } return exports;