diff options
Diffstat (limited to 'libs/rs/rsObjectBase.cpp')
-rw-r--r-- | libs/rs/rsObjectBase.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/rs/rsObjectBase.cpp b/libs/rs/rsObjectBase.cpp index 6a5b7d8385bb..07bbc1e76ca8 100644 --- a/libs/rs/rsObjectBase.cpp +++ b/libs/rs/rsObjectBase.cpp @@ -43,6 +43,11 @@ void ObjectBase::decRef() const mRefCount --; //LOGV("ObjectBase %p dec ref %i", this, mRefCount); if (!mRefCount) { + if (mName) { + LOGV("Deleting RS object %p, name %s", this, mName); + } else { + LOGV("Deleting RS object %p, no name", this); + } delete this; } } |