diff options
author | Joe Onorato <joeo@google.com> | 2010-10-18 19:13:23 -0400 |
---|---|---|
committer | Alex Ray <aray@google.com> | 2013-07-30 13:56:55 -0700 |
commit | d85b55697218655763eb644e677504e6cc66b5a2 (patch) | |
tree | ebbcd0fc291590eabe352e171da839f0cefbd7ca /libs | |
parent | 48da31b735ebbc6a00c4e9fe9631f4af79e2c9df (diff) | |
download | system_core-d85b55697218655763eb644e677504e6cc66b5a2.zip system_core-d85b55697218655763eb644e677504e6cc66b5a2.tar.gz system_core-d85b55697218655763eb644e677504e6cc66b5a2.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.cpp | 3 |
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; } |