summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2010-10-18 19:13:23 -0400
committerJoe Onorato <joeo@google.com>2010-10-19 15:08:05 -0400
commitfc1a4df52346dae7dbf5928a878156ceca002148 (patch)
treed24993974d1cc8683f67743bba744b0b9e8647f2 /libs
parent7961f288be2788d421d021b8535b1952105ae296 (diff)
downloadframeworks_native-fc1a4df52346dae7dbf5928a878156ceca002148.zip
frameworks_native-fc1a4df52346dae7dbf5928a878156ceca002148.tar.gz
frameworks_native-fc1a4df52346dae7dbf5928a878156ceca002148.tar.bz2
Reduce logging.
Remember, the system and main logs are - Shared resources - Primarily for recording problems - To be used only for large grained events during normal operation Bug: 3104855 Change-Id: I136fbd101917dcbc8ebc3f96f276426b48bde7b7
Diffstat (limited to 'libs')
-rw-r--r--libs/utils/StreamingZipInflater.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/utils/StreamingZipInflater.cpp b/libs/utils/StreamingZipInflater.cpp
index 7ebde78..1f62ac5 100644
--- a/libs/utils/StreamingZipInflater.cpp
+++ b/libs/utils/StreamingZipInflater.cpp
@@ -14,6 +14,7 @@
* limitations under the License.
*/
+#define LOG_NDEBUG 1
#define LOG_TAG "szipinf"
#include <utils/Log.h>
@@ -157,7 +158,7 @@ ssize_t StreamingZipInflater::read(void* outBuf, size_t count) {
*/
int result = Z_OK;
if (mStreamNeedsInit) {
- LOGI("Initializing zlib to inflate");
+ LOGD("Initializing zlib to inflate");
result = inflateInit2(&mInflateState, -MAX_WBITS);
mStreamNeedsInit = false;
}