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

Commit f6a19652 authored by Narayan Kamath's avatar Narayan Kamath
Browse files

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
parent a183f45f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }