MTP: replace printfs with logcat
Change-Id: I2c30921098e2dc049dc5fc1e0a548ead33c363e0
Signed-off-by: Mike Lockwood <lockwood@android.com>
diff --git a/media/mtp/MtpProperty.cpp b/media/mtp/MtpProperty.cpp
index 65ce4d4..a114e83 100644
--- a/media/mtp/MtpProperty.cpp
+++ b/media/mtp/MtpProperty.cpp
@@ -15,7 +15,6 @@
*/
#define LOG_TAG "MtpProperty"
-#include "utils/Log.h"
#include "MtpDataPacket.h"
#include "MtpProperty.h"
@@ -144,7 +143,7 @@
packet.getUInt128(value.u128);
break;
default:
- fprintf(stderr, "unknown type %d in MtpProperty::readValue\n", mType);
+ LOGE("unknown type %d in MtpProperty::readValue", mType);
}
}