summaryrefslogtreecommitdiffstats
path: root/runtime/native/dalvik_system_ZygoteHooks.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-05-08 19:05:29 -0700
committerBrian Carlstrom <bdc@google.com>2014-05-09 12:23:00 -0700
commit4d466a8e4587422c989705dce3b2a19e7f0137f5 (patch)
treebd8f0f45db9a7d5888b14a070690f59fb599bd68 /runtime/native/dalvik_system_ZygoteHooks.cc
parentf1c036fc8fa97617cc42bda44a0adbc7b856d6cd (diff)
downloadandroid_art-4d466a8e4587422c989705dce3b2a19e7f0137f5.tar.gz
android_art-4d466a8e4587422c989705dce3b2a19e7f0137f5.tar.bz2
android_art-4d466a8e4587422c989705dce3b2a19e7f0137f5.zip
Remove all LOG(DEBUG) which is not intended to be checked in
Bug: 14632493 Change-Id: Id9da8b87798af0a1b2bd2c178133e5f1ba47d43d
Diffstat (limited to 'runtime/native/dalvik_system_ZygoteHooks.cc')
-rw-r--r--runtime/native/dalvik_system_ZygoteHooks.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/native/dalvik_system_ZygoteHooks.cc b/runtime/native/dalvik_system_ZygoteHooks.cc
index 1008491d39..f541633b9f 100644
--- a/runtime/native/dalvik_system_ZygoteHooks.cc
+++ b/runtime/native/dalvik_system_ZygoteHooks.cc
@@ -58,12 +58,12 @@ static void EnableDebugFeatures(uint32_t debug_flags) {
Runtime* runtime = Runtime::Current();
JavaVMExt* vm = runtime->GetJavaVM();
if (!vm->check_jni) {
- LOG(DEBUG) << "Late-enabling -Xcheck:jni";
+ VLOG(jni) << "Late-enabling -Xcheck:jni";
vm->SetCheckJniEnabled(true);
// There's only one thread running at this point, so only one JNIEnv to fix up.
Thread::Current()->GetJniEnv()->SetCheckJniEnabled(true);
} else {
- LOG(DEBUG) << "Not late-enabling -Xcheck:jni (already on)";
+ VLOG(jni) << "Not late-enabling -Xcheck:jni (already on)";
}
debug_flags &= ~DEBUG_ENABLE_CHECKJNI;
}