diff --git a/interfaces/innerkits/appverify/include/common/hap_verify_log.h b/interfaces/innerkits/appverify/include/common/hap_verify_log.h index 0ce47109ac6b8744bf67421b100ff8846feb0e80..eaf4a238b2c4268d16c8bc7e74aea1cbcdccd4d7 100644 --- a/interfaces/innerkits/appverify/include/common/hap_verify_log.h +++ b/interfaces/innerkits/appverify/include/common/hap_verify_log.h @@ -21,7 +21,7 @@ namespace OHOS { namespace Security { namespace Verify { -static constexpr uint32_t APPVERIFY_DOMAIN = 0xD001120; +static constexpr uint32_t APPVERIFY_DOMAIN = 0xD0011FE; static constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, APPVERIFY_DOMAIN, "HapVerify"}; #define HAPVERIFY_LOG_DEBUG(label, fmt, ...) \ diff --git a/interfaces/innerkits/appverify/src/init/trusted_root_ca.cpp b/interfaces/innerkits/appverify/src/init/trusted_root_ca.cpp index b928ae4a960d4220b8fb19f766452087a11fd987..a5c08be771628484437f9f8cb7b88bc808c68cff 100644 --- a/interfaces/innerkits/appverify/src/init/trusted_root_ca.cpp +++ b/interfaces/innerkits/appverify/src/init/trusted_root_ca.cpp @@ -110,7 +110,6 @@ bool TrustedRootCa::GetTrustedRootCAFromJson(StringCertMap& rootCertMap, const s JsonMap trustedRootCAJsonMap; JsonParserUtils::ParseJsonToMap(trustedRootCAJson, trustedRootCAJsonMap); for (auto jsonPair : trustedRootCAJsonMap) { - HAPVERIFY_LOG_INFO(LABEL, "parse cert: %{public}s", jsonPair.second.c_str()); X509* cert = HapCertVerifyOpensslUtils::GetX509CertFromPemString(jsonPair.second); if (cert == nullptr) { HAPVERIFY_LOG_ERROR(LABEL, "GetX509CertFromPemString failed, key: %{public}s value: %{public}s",