From b26f22f7374419aac913251d8b5e286d11f0cc6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=AC=A3=E5=AE=87?= Date: Thu, 13 Jun 2024 09:32:52 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9DomainID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 张欣宇 Change-Id: I53d449a7f46488407a517a4474e7457ed3ae348c --- interfaces/inner_api/BUILD.gn | 2 +- interfaces/kits/js/distributebundlemgr/BUILD.gn | 2 +- interfaces/kits/js/distributedBundle/BUILD.gn | 2 +- services/dbms/BUILD.gn | 2 +- services/dbms/src/distributed_data_storage.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/interfaces/inner_api/BUILD.gn b/interfaces/inner_api/BUILD.gn index 72cfc81..d9384bc 100644 --- a/interfaces/inner_api/BUILD.gn +++ b/interfaces/inner_api/BUILD.gn @@ -34,7 +34,7 @@ ohos_shared_library("dbms_fwk") { defines = [ "APP_LOG_TAG = \"DistributedBundleMgrService\"", - "LOG_DOMAIN = 0xD001120", + "LOG_DOMAIN = 0xD0011E0", ] public_configs = [ ":dbms_fwk_config" ] diff --git a/interfaces/kits/js/distributebundlemgr/BUILD.gn b/interfaces/kits/js/distributebundlemgr/BUILD.gn index 189510c..6604733 100644 --- a/interfaces/kits/js/distributebundlemgr/BUILD.gn +++ b/interfaces/kits/js/distributebundlemgr/BUILD.gn @@ -18,7 +18,7 @@ ohos_shared_library("distributedbundle") { include_dirs = [] defines = [ "APP_LOG_TAG = \"DistributedBundleMgrService\"", - "LOG_DOMAIN = 0xD001120", + "LOG_DOMAIN = 0xD0011E0", ] sources = [ "distributed_bundle_mgr.cpp", diff --git a/interfaces/kits/js/distributedBundle/BUILD.gn b/interfaces/kits/js/distributedBundle/BUILD.gn index 494929a..1c1c603 100644 --- a/interfaces/kits/js/distributedBundle/BUILD.gn +++ b/interfaces/kits/js/distributedBundle/BUILD.gn @@ -17,7 +17,7 @@ import("../../../../dbms.gni") ohos_shared_library("distributedbundlemanager") { defines = [ "APP_LOG_TAG = \"DistributedBundleMgrService\"", - "LOG_DOMAIN = 0xD001120", + "LOG_DOMAIN = 0xD0011E0", ] sources = [ "native_module.cpp" ] if (distributed_bundle_framework_enable) { diff --git a/services/dbms/BUILD.gn b/services/dbms/BUILD.gn index 511acec..d4f6a0f 100644 --- a/services/dbms/BUILD.gn +++ b/services/dbms/BUILD.gn @@ -46,7 +46,7 @@ ohos_shared_library("libdbms") { defines = [ "APP_LOG_TAG = \"DistributedBundleMgrService\"", - "LOG_DOMAIN = 0xD001120", + "LOG_DOMAIN = 0xD0011E0", ] configs = [ ":distributed_bms_config" ] diff --git a/services/dbms/src/distributed_data_storage.cpp b/services/dbms/src/distributed_data_storage.cpp index 72eed68..2a38fa8 100644 --- a/services/dbms/src/distributed_data_storage.cpp +++ b/services/dbms/src/distributed_data_storage.cpp @@ -425,7 +425,7 @@ void DistributedDataStorage::UpdateDistributedData(int32_t userId) } if (oldDistributedBundleInfos.find(bundleInfo.name) != oldDistributedBundleInfos.end()) { if (oldDistributedBundleInfos[bundleInfo.name].updateTime == bundleInfo.updateTime) { - APP_LOGW("bundleName:%{public}s no need to update", bundleInfo.name.c_str()); + APP_LOGD("bundleName:%{public}s no need to update", bundleInfo.name.c_str()); continue; } } -- Gitee