!837 update log level

Merge pull request !837 from wangpggg/master
This commit is contained in:
openharmony_ci 2024-04-26 03:29:45 +00:00 committed by Gitee
commit 5d5c63f5d9
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 3 additions and 3 deletions

View File

@ -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());
}
}

View File

@ -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());
}
}

View File

@ -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;