Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5823d48f authored by that's avatar that Committed by Dees Troy
Browse files

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

The requested file might be on another storage.

Change-Id: Ia71525058b616a28a8ea2b4ab48ebac1c790757e
parent 5f4fd8c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -768,7 +768,7 @@ Node* MtpStorage::findNode(MtpObjectHandle handle) {
		}
	}
	// 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;
}