From f6a196522ac823bef7eb06267e3c00ccdef1d298 Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Thu, 12 Dec 2013 10:25:30 +0000 Subject: [PATCH] Get rid of some log spam. We don't need a warning if an entry isn't found in a zip file. It can happen as part of normal operation. Change-Id: I86c132a040371f36f0dd981b49c02b3173821439 --- libziparchive/zip_archive.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libziparchive/zip_archive.cc b/libziparchive/zip_archive.cc index 43312b4be..ebec4bb66 100644 --- a/libziparchive/zip_archive.cc +++ b/libziparchive/zip_archive.cc @@ -850,7 +850,7 @@ int32_t FindEntry(const ZipArchiveHandle handle, const char* entryName, archive->hash_table_size, entryName, nameLen); if (ent < 0) { - ALOGW("Zip: Could not find entry %.*s", nameLen, entryName); + ALOGD("Zip: Could not find entry %.*s", nameLen, entryName); return ent; }