diff --git a/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp b/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp index 503b0a6bc76c80883ab9c8477b3712be8da6380c..6bd4b72f3869c05b028d727f19211e7ee280d2a2 100644 --- a/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp +++ b/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp @@ -60,9 +60,9 @@ void UdmfNotifierProxy::HandleDelayObserver(const std::string &key, const DataLo { MessageParcel reply; int32_t status = - IPC_SEND(static_cast(UdmfServiceInterfaceCode::HANDLE_DELAY_OBSERVER), reply, key, dataLoadInfo); + IPC_SEND(static_cast(UdmfNotifierInterfaceCode::HANDLE_DELAY_OBSERVER), reply, key, dataLoadInfo); if (status != E_OK) { - ZLOGE("status:%{public}d" PRIu64, status); + ZLOGE("status:%{public}d", status); } } @@ -76,9 +76,9 @@ void DelayDataCallbackProxy::DelayDataCallback(const std::string &key, const Uni { MessageParcel reply; int32_t status = - IPC_SEND(static_cast(UdmfServiceInterfaceCode::HANDLE_DELAY_OBSERVER), reply, key, data); + IPC_SEND(static_cast(UdmfNotifierInterfaceCode::HANDLE_DELAY_DATA), reply, key, data); if (status != E_OK) { - ZLOGE("status:%{public}d" PRIu64, status); + ZLOGE("status:%{public}d", status); } } } // namespace UDMF