summaryrefslogtreecommitdiff
path: root/libs/rs/rsObjectBase.cpp
diff options
context:
space:
mode:
authorJason Sams <rjsams@android.com>2009-06-23 12:22:47 -0700
committerJason Sams <rjsams@android.com>2009-06-23 12:22:47 -0700
commitf29ca50d80e3dc379de1642e85b7963175b2ca38 (patch)
tree17854358cfe316c08dbf5c80f8af8b0c7849bc33 /libs/rs/rsObjectBase.cpp
parentf8001669ba7d9b3d0e097c7124e670f13374a6c7 (diff)
Cleanup logging and fix a startup race condition that manifested on Firestone.
Diffstat (limited to 'libs/rs/rsObjectBase.cpp')
-rw-r--r--libs/rs/rsObjectBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/rs/rsObjectBase.cpp b/libs/rs/rsObjectBase.cpp
index 6842c372451a..3219c3985321 100644
--- a/libs/rs/rsObjectBase.cpp
+++ b/libs/rs/rsObjectBase.cpp
@@ -33,14 +33,14 @@ ObjectBase::~ObjectBase()
void ObjectBase::incRef() const
{
mRefCount ++;
- //LOGE("ObjectBase %p inc ref %i", this, mRefCount);
+ //LOGV("ObjectBase %p inc ref %i", this, mRefCount);
}
void ObjectBase::decRef() const
{
rsAssert(mRefCount > 0);
mRefCount --;
- //LOGE("ObjectBase %p dec ref %i", this, mRefCount);
+ //LOGV("ObjectBase %p dec ref %i", this, mRefCount);
if (!mRefCount) {
delete this;
}