summaryrefslogtreecommitdiffstats
path: root/media/java
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2011-01-21 21:00:54 -0800
committerMike Lockwood <lockwood@android.com>2011-01-21 21:00:54 -0800
commitf26a586c86b097f975e26fe526ead564ad011bd0 (patch)
tree30717ea49b7f79f089501414e83442e7024f1615 /media/java
parent500657387d834a8eb712e9c56bb00b64173cc1a9 (diff)
downloadframeworks_base-f26a586c86b097f975e26fe526ead564ad011bd0.zip
frameworks_base-f26a586c86b097f975e26fe526ead564ad011bd0.tar.gz
frameworks_base-f26a586c86b097f975e26fe526ead564ad011bd0.tar.bz2
Remove MTP related log spam
Change-Id: I9de1792cbeec07fa5ab42ff9a10813f0c3d30fc1 Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'media/java')
-rw-r--r--media/java/android/mtp/MtpDatabase.java19
-rw-r--r--media/java/android/mtp/MtpServer.java9
2 files changed, 1 insertions, 27 deletions
diff --git a/media/java/android/mtp/MtpDatabase.java b/media/java/android/mtp/MtpDatabase.java
index abc457e..a595562 100644
--- a/media/java/android/mtp/MtpDatabase.java
+++ b/media/java/android/mtp/MtpDatabase.java
@@ -222,7 +222,6 @@ public class MtpDatabase {
private int[] getObjectList(int storageID, int format, int parent) {
// we can ignore storageID until we support multiple storages
- Log.d(TAG, "getObjectList parent: " + parent);
Cursor c = null;
try {
if (format != 0) {
@@ -235,7 +234,6 @@ public class MtpDatabase {
PARENT_WHERE, new String[] { Integer.toString(parent) }, null);
}
if (c == null) {
- Log.d(TAG, "null cursor");
return null;
}
int count = c.getCount();
@@ -245,7 +243,6 @@ public class MtpDatabase {
c.moveToNext();
result[i] = c.getInt(0);
}
- Log.d(TAG, "returning " + result);
return result;
}
} catch (RemoteException e) {
@@ -260,7 +257,6 @@ public class MtpDatabase {
private int getNumObjects(int storageID, int format, int parent) {
// we can ignore storageID until we support multiple storages
- Log.d(TAG, "getObjectList parent: " + parent);
Cursor c = null;
try {
if (format != 0) {
@@ -529,8 +525,8 @@ public class MtpDatabase {
String newPath = path.substring(0, lastSlash + 1) + newName;
File newFile = new File(newPath);
boolean success = oldFile.renameTo(newFile);
- Log.d(TAG, "renaming "+ path + " to " + newPath + (success ? " succeeded" : " failed"));
if (!success) {
+ Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
return MtpConstants.RESPONSE_GENERAL_ERROR;
}
@@ -557,8 +553,6 @@ public class MtpDatabase {
private int setObjectProperty(int handle, int property,
long intValue, String stringValue) {
- Log.d(TAG, "setObjectProperty: " + property);
-
switch (property) {
case MtpConstants.PROPERTY_OBJECT_FILE_NAME:
return renameFile(handle, stringValue);
@@ -569,8 +563,6 @@ public class MtpDatabase {
}
private int getDeviceProperty(int property, long[] outIntValue, char[] outStringValue) {
- Log.d(TAG, "getDeviceProperty: " + property);
-
switch (property) {
case MtpConstants.DEVICE_PROPERTY_SYNCHRONIZATION_PARTNER:
case MtpConstants.DEVICE_PROPERTY_DEVICE_FRIENDLY_NAME:
@@ -616,8 +608,6 @@ public class MtpDatabase {
}
private int setDeviceProperty(int property, long intValue, String stringValue) {
- Log.d(TAG, "setDeviceProperty: " + property + " : " + stringValue);
-
switch (property) {
case MtpConstants.DEVICE_PROPERTY_SYNCHRONIZATION_PARTNER:
case MtpConstants.DEVICE_PROPERTY_DEVICE_FRIENDLY_NAME:
@@ -638,7 +628,6 @@ public class MtpDatabase {
private boolean getObjectInfo(int handle, int[] outStorageFormatParent,
char[] outName, long[] outSizeModified) {
- Log.d(TAG, "getObjectInfo: " + handle);
Cursor c = null;
try {
c = mMediaProvider.query(mObjectsUri, OBJECT_INFO_PROJECTION,
@@ -674,7 +663,6 @@ public class MtpDatabase {
}
private int getObjectFilePath(int handle, char[] outFilePath, long[] outFileLengthFormat) {
- Log.d(TAG, "getObjectFilePath: " + handle);
if (handle == 0) {
// special case root directory
mMediaStoragePath.getChars(0, mMediaStoragePath.length(), outFilePath, 0);
@@ -708,7 +696,6 @@ public class MtpDatabase {
}
private int deleteFile(int handle) {
- Log.d(TAG, "deleteFile: " + handle);
mDatabaseModified = true;
String path = null;
int format = 0;
@@ -754,7 +741,6 @@ public class MtpDatabase {
}
private int[] getObjectReferences(int handle) {
- Log.d(TAG, "getObjectReferences for: " + handle);
Uri uri = Files.getMtpReferencesUri(mVolumeName, handle);
Cursor c = null;
try {
@@ -802,14 +788,11 @@ public class MtpDatabase {
}
private void sessionStarted() {
- Log.d(TAG, "sessionStarted");
mDatabaseModified = false;
}
private void sessionEnded() {
- Log.d(TAG, "sessionEnded");
if (mDatabaseModified) {
- Log.d(TAG, "sending ACTION_MTP_SESSION_END");
mContext.sendBroadcast(new Intent(MediaStore.ACTION_MTP_SESSION_END));
mDatabaseModified = false;
}
diff --git a/media/java/android/mtp/MtpServer.java b/media/java/android/mtp/MtpServer.java
index af6e8eb..2e69373 100644
--- a/media/java/android/mtp/MtpServer.java
+++ b/media/java/android/mtp/MtpServer.java
@@ -34,15 +34,6 @@ public class MtpServer {
native_setup(database, storagePath, reserveSpace);
}
- @Override
- protected void finalize() throws Throwable {
- try {
- native_finalize();
- } finally {
- super.finalize();
- }
- }
-
public void start() {
native_start();
}