diff options
author | Narayan Kamath <narayan@google.com> | 2013-12-31 10:27:59 +0000 |
---|---|---|
committer | Narayan Kamath <narayan@google.com> | 2014-01-02 19:41:00 +0000 |
commit | a1ff801e5f8f896d7961f1b015c75b824e9c44a4 (patch) | |
tree | 7599afd2274fede3a9587f3c75c728b2fa46e02c /libziparchive | |
parent | 268cc54089cbdeb0c2ea955448bb16a0858c4538 (diff) | |
download | system_core-a1ff801e5f8f896d7961f1b015c75b824e9c44a4.zip system_core-a1ff801e5f8f896d7961f1b015c75b824e9c44a4.tar.gz system_core-a1ff801e5f8f896d7961f1b015c75b824e9c44a4.tar.bz2 |
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
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 2b827b3..8436d49 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; } |