mtp: fix log spam: findNode not finding a node is not an error

The requested file might be on another storage.

Change-Id: Ia71525058b616a28a8ea2b4ab48ebac1c790757e
diff --git a/mtp/MtpStorage.cpp b/mtp/MtpStorage.cpp
index 4c55361..821a788 100755
--- a/mtp/MtpStorage.cpp
+++ b/mtp/MtpStorage.cpp
@@ -768,7 +768,7 @@
 		}
 	}
 	// Item is not on this storage device
-	MTPE("MtpStorage::findNode: no node found for handle %u, searched %u trees\n", handle, mtpmap.size());
+	MTPD("MtpStorage::findNode: no node found for handle %u on storage %u, searched %u trees\n", handle, mStorageID, mtpmap.size());
 	return NULL;
 }