summaryrefslogtreecommitdiffstats
path: root/vm/alloc/Alloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vm/alloc/Alloc.cpp')
-rw-r--r--vm/alloc/Alloc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/alloc/Alloc.cpp b/vm/alloc/Alloc.cpp
index d2c3336f8..8a9eb4ed3 100644
--- a/vm/alloc/Alloc.cpp
+++ b/vm/alloc/Alloc.cpp
@@ -119,7 +119,7 @@ static Object* createStockException(const char* descriptor, const char* msg)
} else {
msgStr = dvmCreateStringFromCstr(msg);
if (msgStr == NULL) {
- LOGW("Could not allocate message string \"%s\"", msg);
+ ALOGW("Could not allocate message string \"%s\"", msg);
dvmReleaseTrackedAlloc(obj, self);
return NULL;
}
@@ -165,7 +165,7 @@ bool dvmCreateStockExceptions()
if (gDvm.outOfMemoryObj == NULL || gDvm.internalErrorObj == NULL ||
gDvm.noClassDefFoundErrorObj == NULL)
{
- LOGW("Unable to create stock exceptions");
+ ALOGW("Unable to create stock exceptions");
return false;
}