summaryrefslogtreecommitdiffstats
path: root/runtime/native/java_lang_Runtime.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-02-17 19:25:29 -0800
committerAndreas Gampe <agampe@google.com>2015-02-17 19:25:29 -0800
commite4301ffb56f9be6f6c2640bfb1870b74f4a37ad2 (patch)
treeb21393462212ed0cf6a19e6a4454db9548ab48a2 /runtime/native/java_lang_Runtime.cc
parent17609db47537ea6da03db1be530ad13e67cf24db (diff)
downloadart-e4301ffb56f9be6f6c2640bfb1870b74f4a37ad2.zip
art-e4301ffb56f9be6f6c2640bfb1870b74f4a37ad2.tar.gz
art-e4301ffb56f9be6f6c2640bfb1870b74f4a37ad2.tar.bz2
ART: Make run-tests more verbose
Make run-tests log ERROR level on host. Adjust some internal LOG(ERROR) to LOG(WARNING). Add check scripts to adjust for other LOG(ERROR) messages. Bug: 18713034 Change-Id: I2a3e055baa6a0e31f106364c300c20963a59ed94
Diffstat (limited to 'runtime/native/java_lang_Runtime.cc')
-rw-r--r--runtime/native/java_lang_Runtime.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/java_lang_Runtime.cc b/runtime/native/java_lang_Runtime.cc
index dc0cb7b..97b17bf 100644
--- a/runtime/native/java_lang_Runtime.cc
+++ b/runtime/native/java_lang_Runtime.cc
@@ -65,7 +65,7 @@ static jstring Runtime_nativeLoad(JNIEnv* env, jclass, jstring javaFilename, job
Fn android_update_LD_LIBRARY_PATH = reinterpret_cast<Fn>(sym);
(*android_update_LD_LIBRARY_PATH)(ldLibraryPath.c_str());
} else {
- LOG(ERROR) << "android_update_LD_LIBRARY_PATH not found; .so dependencies will not work!";
+ LOG(WARNING) << "android_update_LD_LIBRARY_PATH not found; .so dependencies will not work!";
}
}