diff options
author | Mathias Agopian <mathias@google.com> | 2011-03-02 18:51:00 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-03-02 18:51:00 -0800 |
commit | f99c91c9cf780f925d493e60e1ec479073580434 (patch) | |
tree | 71cca2c3718cc3e2996281a70f15d2da937134ad | |
parent | 9402a667e90c86947834df172ae5a1db6e49eecb (diff) | |
parent | 32ae094d87cbb35f8b31acb7b83b430db62d5925 (diff) | |
download | frameworks_base-f99c91c9cf780f925d493e60e1ec479073580434.zip frameworks_base-f99c91c9cf780f925d493e60e1ec479073580434.tar.gz frameworks_base-f99c91c9cf780f925d493e60e1ec479073580434.tar.bz2 |
Merge "remove some logs"
-rw-r--r-- | services/surfaceflinger/SurfaceFlinger.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp index 40882d8..554fa43 100644 --- a/services/surfaceflinger/SurfaceFlinger.cpp +++ b/services/surfaceflinger/SurfaceFlinger.cpp @@ -2150,8 +2150,8 @@ status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy, sh = (!sh) ? hw_h : sh; const size_t size = sw * sh * 4; - LOGD("screenshot: sw=%d, sh=%d, minZ=%d, maxZ=%d", - sw, sh, minLayerZ, maxLayerZ); + //LOGD("screenshot: sw=%d, sh=%d, minZ=%d, maxZ=%d", + // sw, sh, minLayerZ, maxLayerZ); // make sure to clear all GL error flags while ( glGetError() != GL_NO_ERROR ) ; @@ -2236,7 +2236,7 @@ status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy, hw.compositionComplete(); - LOGD("screenshot: result = %s", result<0 ? strerror(result) : "OK"); + // LOGD("screenshot: result = %s", result<0 ? strerror(result) : "OK"); return result; } |