summaryrefslogtreecommitdiffstats
path: root/vm/interp
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2011-05-26 12:01:03 -0700
committerDan Bornstein <danfuzz@android.com>2011-05-26 12:01:03 -0700
commit6f3c21fb026d9489e5046416bcd5a84fa8e4615b (patch)
treed2079c1e64552546b28f8e371251be2db50f1eb8 /vm/interp
parent291c84f60853d30e1c0d79dd08c5e5164f588e26 (diff)
downloadandroid_dalvik-6f3c21fb026d9489e5046416bcd5a84fa8e4615b.tar.gz
android_dalvik-6f3c21fb026d9489e5046416bcd5a84fa8e4615b.tar.bz2
android_dalvik-6f3c21fb026d9489e5046416bcd5a84fa8e4615b.zip
More LOG newline cleanup.
This changes all the places I could find where the log string was on the line after its LOG call. Change-Id: Iac6a9fcc64f46631fb093824ab60237dce1a5241
Diffstat (limited to 'vm/interp')
-rw-r--r--vm/interp/Stack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/interp/Stack.cpp b/vm/interp/Stack.cpp
index 9f6c1cf7a..978d26b5b 100644
--- a/vm/interp/Stack.cpp
+++ b/vm/interp/Stack.cpp
@@ -78,7 +78,7 @@ static bool dvmPushInterpFrame(Thread* self, const Method* method)
if (stackPtr - stackReq < self->interpStackEnd) {
/* not enough space */
LOGW("Stack overflow on call to interp "
- "(req=%d top=%p cur=%p size=%d %s.%s)\n",
+ "(req=%d top=%p cur=%p size=%d %s.%s)",
stackReq, self->interpStackStart, self->interpSave.curFrame,
self->interpStackSize, method->clazz->descriptor, method->name);
dvmHandleStackOverflow(self, method);
@@ -152,7 +152,7 @@ bool dvmPushJNIFrame(Thread* self, const Method* method)
if (stackPtr - stackReq < self->interpStackEnd) {
/* not enough space */
LOGW("Stack overflow on call to native "
- "(req=%d top=%p cur=%p size=%d '%s')\n",
+ "(req=%d top=%p cur=%p size=%d '%s')",
stackReq, self->interpStackStart, self->interpSave.curFrame,
self->interpStackSize, method->name);
dvmHandleStackOverflow(self, method);
@@ -224,7 +224,7 @@ bool dvmPushLocalFrame(Thread* self, const Method* method)
if (stackPtr - stackReq < self->interpStackEnd) {
/* not enough space; let JNI throw the exception */
LOGW("Stack overflow on PushLocal "
- "(req=%d top=%p cur=%p size=%d '%s')\n",
+ "(req=%d top=%p cur=%p size=%d '%s')",
stackReq, self->interpStackStart, self->interpSave.curFrame,
self->interpStackSize, method->name);
dvmHandleStackOverflow(self, method);