From a1ff801e5f8f896d7961f1b015c75b824e9c44a4 Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Tue, 31 Dec 2013 10:27:59 +0000 Subject: [PATCH] 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 --- 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 2b827b3af..8436d49be 100644 --- a/libziparchive/zip_archive.cc +++ b/libziparchive/zip_archive.cc @@ -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; }