From 3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 13 Sep 2016 10:47:28 -0700 Subject: ART: Use libbase logging Move most of our logging infrastructure over to system/core/base. Retain VLOG. Using unified Android infrastructure has two main advantages. First, it reduces the complexity/maintenance burden in ART. Second, it allows to detach logging for the cases where we do not want or need a runtime, e.g., dexdump, the disassembler, etc. As a part of the latter, libbase is also supported for all hosts (including Windows). From a developer viewpoint, there are minor behavior changes for the LOG statements (see above), but otherwise usage is the same. Explicit severity enum items are in the android::base namespace now. Bug: 31338270 Test: m test-art-host Change-Id: I5abcb2f45f5b03d49951874c48544f72a283a91b --- test/143-string-value/check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/143-string-value/check') diff --git a/test/143-string-value/check b/test/143-string-value/check index 92f6e90023..2a3476c2ab 100755 --- a/test/143-string-value/check +++ b/test/143-string-value/check @@ -15,6 +15,6 @@ # limitations under the License. # Strip error log messages. -sed -e '/^art E.*\] /d' "$2" > "$2.tmp" +sed -e '/^dalvikvm\(\|32\|64\) E.*\] /d' "$2" > "$2.tmp" diff --strip-trailing-cr -q "$1" "$2.tmp" >/dev/null -- cgit v1.2.3-59-g8ed1b