diff options
author | Gloria Wang <gwang@google.com> | 2010-11-02 15:02:48 -0700 |
---|---|---|
committer | Gloria Wang <gwang@google.com> | 2010-11-02 15:09:43 -0700 |
commit | 1b42e92decd815c72ecc83d11f5c0c37f035c696 (patch) | |
tree | f896ae9656c920a21a36ed689f4a32529194d111 /drm | |
parent | 6831524a497d0a46da7db8f8f60d13946d0aee1a (diff) | |
download | frameworks_base-1b42e92decd815c72ecc83d11f5c0c37f035c696.zip frameworks_base-1b42e92decd815c72ecc83d11f5c0c37f035c696.tar.gz frameworks_base-1b42e92decd815c72ecc83d11f5c0c37f035c696.tar.bz2 |
Disable some logs
Change-Id: I05fcf6869916504367814fd2abd2b1af88619f5b
Diffstat (limited to 'drm')
-rw-r--r-- | drm/common/IDrmManagerService.cpp | 4 | ||||
-rw-r--r-- | drm/drmserver/DrmManager.cpp | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/drm/common/IDrmManagerService.cpp b/drm/common/IDrmManagerService.cpp index c28527c..e46451d 100644 --- a/drm/common/IDrmManagerService.cpp +++ b/drm/common/IDrmManagerService.cpp @@ -559,8 +559,6 @@ DecryptHandle* BpDrmManagerService::openDecryptSession( handle->decryptInfo = new DecryptInfo(); handle->decryptInfo->decryptBufferLength = reply.readInt32(); } - } else { - LOGE("no decryptHandle is generated in service side"); } return handle; } @@ -1232,8 +1230,6 @@ status_t BnDrmManagerService::onTransact( reply->writeInt32(handle->decryptInfo->decryptBufferLength); delete handle->decryptInfo; handle->decryptInfo = NULL; } - } else { - LOGE("NULL decryptHandle is returned"); } delete handle; handle = NULL; return DRM_NO_ERROR; diff --git a/drm/drmserver/DrmManager.cpp b/drm/drmserver/DrmManager.cpp index 52527dc..645d2c6 100644 --- a/drm/drmserver/DrmManager.cpp +++ b/drm/drmserver/DrmManager.cpp @@ -383,7 +383,6 @@ DecryptHandle* DrmManager::openDecryptSession(int uniqueId, int fd, int offset, if (DRM_NO_ERROR != result) { delete handle; handle = NULL; - LOGE("DrmManager::openDecryptSession: no capable plug-in found"); } return handle; |