summaryrefslogtreecommitdiffstats
path: root/libziparchive
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2013-12-12 10:25:30 +0000
committerNarayan Kamath <narayan@google.com>2013-12-12 10:29:31 +0000
commitf6a196522ac823bef7eb06267e3c00ccdef1d298 (patch)
tree7afcc131be6ea5fba7469853cdee196ec104f7e5 /libziparchive
parenta183f45f7aaee721a9c1cde14cdd47e47a1592e4 (diff)
downloadcore-f6a196522ac823bef7eb06267e3c00ccdef1d298.tar.gz
core-f6a196522ac823bef7eb06267e3c00ccdef1d298.tar.bz2
core-f6a196522ac823bef7eb06267e3c00ccdef1d298.zip
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
Diffstat (limited to 'libziparchive')
-rw-r--r--libziparchive/zip_archive.cc2
1 files changed, 1 insertions, 1 deletions
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;
}