Merge "Tone down a log message."

This commit is contained in:
Andy McFadden
2010-03-02 07:36:23 -08:00
committed by Android (Google) Code Review

View File

@@ -1036,7 +1036,7 @@ static int javaAttachThread(const char* threadName, JNIEnv** pEnv)
result = vm->AttachCurrentThread(pEnv, (void*) &args);
if (result != JNI_OK)
LOGE("ERROR: thread attach failed\n");
LOGI("NOTE: attach of thread '%s' failed\n", threadName);
return result;
}