From 8e5aafe57dd1f5e8ccd7ad1bf37e4487fbe8a110 Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Mon, 27 Oct 2014 18:04:10 -0700 Subject: [PATCH] Condense AndroidRuntime init log, include uid running under. Change-Id: Ifda3001fdc25d759f07a93b8569c59da89a8bcfc --- core/jni/AndroidRuntime.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/jni/AndroidRuntime.cpp b/core/jni/AndroidRuntime.cpp index 4159792c9864c..4d178779e32d6 100644 --- a/core/jni/AndroidRuntime.cpp +++ b/core/jni/AndroidRuntime.cpp @@ -929,8 +929,8 @@ jstring AndroidRuntime::NewStringLatin1(JNIEnv* env, const char* bytes) { */ void AndroidRuntime::start(const char* className, const Vector& options) { - ALOGD("\n>>>>>> AndroidRuntime START %s <<<<<<\n", - className != NULL ? className : "(unknown)"); + ALOGD(">>>>>> START %s uid %d <<<<<<\n", + className != NULL ? className : "(unknown)", getuid()); static const String8 startSystemServer("start-system-server");