Minor cleanup of profile and compile logging.
diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp
index 0ac8320..e3236c4 100644
--- a/libs/rs/rsContext.cpp
+++ b/libs/rs/rsContext.cpp
@@ -309,6 +309,7 @@
 
     objDestroyOOBInit();
     timerInit();
+    timerSet(RS_TIMER_INTERNAL);
 
     LOGV("RS Launching thread");
     status = pthread_create(&mThreadId, &threadAttr, threadProc, this);
diff --git a/libs/rs/rsProgramRaster.cpp b/libs/rs/rsProgramRaster.cpp
index 0f5ec51..b968fe1 100644
--- a/libs/rs/rsProgramRaster.cpp
+++ b/libs/rs/rsProgramRaster.cpp
@@ -60,8 +60,6 @@
     }
     state->mLast.set(this);
 
-    LOGE("setup %i %i %i %f %f", mPointSmooth, mLineSmooth, mPointSprite, mPointSize, mLineWidth);
-
     glPointSize(mPointSize);
     if (mPointSmooth) {
         glEnable(GL_POINT_SMOOTH);
diff --git a/libs/rs/rsScriptC.cpp b/libs/rs/rsScriptC.cpp
index bff337c..22d42ac 100644
--- a/libs/rs/rsScriptC.cpp
+++ b/libs/rs/rsScriptC.cpp
@@ -147,7 +147,7 @@
         ACCchar buf[4096];
         ACCsizei len;
         accGetScriptInfoLog(s->mAccScript, sizeof(buf), &len, buf);
-        LOGE(buf);
+        LOGV(buf);
     }
 
     if (s->mProgram.mInit) {