Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion middleware/drm/helper/ClearKeyHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<ClearKeyHelper>(drmInfo);
Expand Down
2 changes: 1 addition & 1 deletion middleware/drm/helper/WidevineDrmHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<WidevineDrmHelper>(drmInfo);
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::mutex> lock(mWatMutex);
Expand Down Expand Up @@ -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;
{
Expand Down Expand Up @@ -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<std::mutex> lock(mWatMutex);
Expand Down
Loading