diff options
Diffstat (limited to 'libs/rs/rsObjectBase.cpp')
-rw-r--r-- | libs/rs/rsObjectBase.cpp | 4 |
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; } |