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

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

Change a debug log to a verbose log.

Unlike ALOGV, messages from ALOGD are logged on
all configurations. Not finding an entry in a zip
file is a "normal" occurrence so using an ALOGD
message for it amounts to spam.

Change-Id: I2c60d11e8a750be5106afd65c3c5e335f53f01b6
parent 268cc540
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -818,7 +818,7 @@ int32_t FindEntry(const ZipArchiveHandle handle, const char* entryName,
    archive->hash_table_size, entryName, nameLen);

  if (ent < 0) {
    ALOGD("Zip: Could not find entry %.*s", nameLen, entryName);
    ALOGV("Zip: Could not find entry %.*s", nameLen, entryName);
    return ent;
  }