Fixing refcounting debug statements that've gotten bitrotten.

Change-Id: Ie93bf651b9e469b7b4e9cacd8f79b38d04012892
diff --git a/rsObjectBase.cpp b/rsObjectBase.cpp
index f69cb15..124d5e6 100644
--- a/rsObjectBase.cpp
+++ b/rsObjectBase.cpp
@@ -71,13 +71,13 @@
 void ObjectBase::incUserRef() const
 {
     mUserRefCount ++;
-    //LOGV("ObjectBase %p inc ref %i", this, mRefCount);
+    //LOGV("ObjectBase %p inc ref %i", this, mUserRefCount);
 }
 
 void ObjectBase::incSysRef() const
 {
     mSysRefCount ++;
-    //LOGV("ObjectBase %p inc ref %i", this, mRefCount);
+    //LOGV("ObjectBase %p inc ref %i", this, mSysRefCount);
 }
 
 bool ObjectBase::checkDelete() const
@@ -96,14 +96,14 @@
 {
     rsAssert(mUserRefCount > 0);
     mUserRefCount --;
-    //dumpObj("decUserRef");
+    //dumpLOGV("decUserRef");
     return checkDelete();
 }
 
 bool ObjectBase::zeroUserRef() const
 {
     mUserRefCount = 0;
-    //dumpObj("zeroUserRef");
+    //dumpLOGV("zeroUserRef");
     return checkDelete();
 }
 
@@ -111,7 +111,7 @@
 {
     rsAssert(mSysRefCount > 0);
     mSysRefCount --;
-    //dumpObj("decSysRef");
+    //dumpLOGV("decSysRef");
     return checkDelete();
 }