diff options
| author | 2012-01-19 17:28:26 -0800 | |
|---|---|---|
| committer | 2012-01-19 17:28:26 -0800 | |
| commit | db2b39300a8f763cf2d0c9808deb86db87d5492c (patch) | |
| tree | fce1cbeaacc788437bfba6ae0655e93fd74c9271 /libs/binder/Parcel.cpp | |
| parent | dde686e2bdf7ea679dae4fd4edbf94c71802dc28 (diff) | |
| parent | f3f650db96d40014a0203393c585c368b0dd7a9a (diff) | |
am f3f650db: am a826f9e2: Merge "Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)"
* commit 'f3f650db96d40014a0203393c585c368b0dd7a9a':
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
Diffstat (limited to 'libs/binder/Parcel.cpp')
| -rw-r--r-- | libs/binder/Parcel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 8b9db7f83d43..728107362eb3 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -504,7 +504,7 @@ bool Parcel::enforceInterface(const String16& interface, if (str == interface) { return true; } else { - LOGW("**** enforceInterface() expected '%s' but read '%s'\n", + ALOGW("**** enforceInterface() expected '%s' but read '%s'\n", String8(interface).string(), String8(str).string()); return false; } @@ -1208,7 +1208,7 @@ const flat_binder_object* Parcel::readObject(bool nullMetaData) const return obj; } } - LOGW("Attempt to read object from Parcel %p at offset %d that is not in the object list", + ALOGW("Attempt to read object from Parcel %p at offset %d that is not in the object list", this, DPOS); } return NULL; |