diff --git a/interfaces/inner_api/BUILD.gn b/interfaces/inner_api/BUILD.gn index 72cfc811c46643a68ea9a6af617616e42fe777d8..d9384bccff7d25d46cb37f896fa04a2011696bf7 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 189510c84323debc0a149134f3c5f3ef74a6f39d..6604733fb56ad75ca1aa0ebd077f9f2397a9c901 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 494929af1ebc9f356913036c0c50ee3dcc7be263..1c1c603fd41dba5bab4bde69488382b614958537 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 511acecd8464d24c20c96c50976381af80959580..d4f6a0fae73f9708d863abf8a02db2914ef4211e 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 72eed68f593143ab5af4cf2001bca6a7118bd3d6..2a38fa8cafcda3c1399f8e2715ba7e7f3bc82808 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; } }