diff options
author | Narayan Kamath <narayan@google.com> | 2013-12-12 10:25:30 +0000 |
---|---|---|
committer | Narayan Kamath <narayan@google.com> | 2013-12-12 10:29:31 +0000 |
commit | f6a196522ac823bef7eb06267e3c00ccdef1d298 (patch) | |
tree | 7afcc131be6ea5fba7469853cdee196ec104f7e5 /libziparchive | |
parent | a183f45f7aaee721a9c1cde14cdd47e47a1592e4 (diff) | |
download | core-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.cc | 2 |
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; } |