diff --git a/middleware/drm/helper/ClearKeyHelper.cpp b/middleware/drm/helper/ClearKeyHelper.cpp index 37c02c7e10..d387ea74fa 100644 --- a/middleware/drm/helper/ClearKeyHelper.cpp +++ b/middleware/drm/helper/ClearKeyHelper.cpp @@ -245,7 +245,7 @@ bool ClearKeyHelperFactory::isDRM(const struct DrmInfo& drmInfo) const DrmHelperPtr ClearKeyHelperFactory::createHelper(const struct DrmInfo& drmInfo) const { - MW_LOG_ERR("creating helper"); + MW_LOG_MIL("creating helper"); if (isDRM(drmInfo)) { return std::make_shared(drmInfo); diff --git a/middleware/drm/helper/WidevineDrmHelper.cpp b/middleware/drm/helper/WidevineDrmHelper.cpp index 1305f0648a..cd6c74cfa6 100755 --- a/middleware/drm/helper/WidevineDrmHelper.cpp +++ b/middleware/drm/helper/WidevineDrmHelper.cpp @@ -262,7 +262,7 @@ DrmHelperPtr WidevineDrmHelperFactory::createHelper(const struct DrmInfo& drmInf if (isDRM(drmInfo)) { - MW_LOG_ERR("creating helper"); + MW_LOG_MIL("creating helper"); return std::make_shared(drmInfo); } else diff --git a/middleware/externals/contentsecuritymanager/SecManagerThunder.cpp b/middleware/externals/contentsecuritymanager/SecManagerThunder.cpp index ab5215c5fa..7e431a0b31 100644 --- a/middleware/externals/contentsecuritymanager/SecManagerThunder.cpp +++ b/middleware/externals/contentsecuritymanager/SecManagerThunder.cpp @@ -731,7 +731,7 @@ void SecManagerThunder::ShowWatermark(bool show) JsonObject result; bool rpcResult = false; - MW_LOG_ERR("ContentSecurityManager %s:%d ", __FUNCTION__, __LINE__); + MW_LOG_MIL("ContentSecurityManager %s:%d ", __FUNCTION__, __LINE__); param["show"] = show; { std::lock_guard lock(mWatMutex); @@ -762,7 +762,7 @@ void SecManagerThunder::CreateWatermark(int graphicId, int zIndex ) JsonObject result; bool rpcResult = false; - MW_LOG_ERR("ContentSecurityManager %s:%d ", __FUNCTION__, __LINE__); + MW_LOG_MIL("ContentSecurityManager %s:%d ", __FUNCTION__, __LINE__); param["id"] = graphicId; param["zorder"] = zIndex; { @@ -794,7 +794,7 @@ void SecManagerThunder::DeleteWatermark(int graphicId) JsonObject result; bool rpcResult = false; - MW_LOG_ERR("ContentSecurityManager %s:%d ", __FUNCTION__, __LINE__); + MW_LOG_MIL("ContentSecurityManager %s:%d ", __FUNCTION__, __LINE__); param["id"] = graphicId; { std::lock_guard lock(mWatMutex);