summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2011-03-02 18:51:00 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-03-02 18:51:00 -0800
commitf99c91c9cf780f925d493e60e1ec479073580434 (patch)
tree71cca2c3718cc3e2996281a70f15d2da937134ad
parent9402a667e90c86947834df172ae5a1db6e49eecb (diff)
parent32ae094d87cbb35f8b31acb7b83b430db62d5925 (diff)
downloadframeworks_base-f99c91c9cf780f925d493e60e1ec479073580434.zip
frameworks_base-f99c91c9cf780f925d493e60e1ec479073580434.tar.gz
frameworks_base-f99c91c9cf780f925d493e60e1ec479073580434.tar.bz2
Merge "remove some logs"
-rw-r--r--services/surfaceflinger/SurfaceFlinger.cpp6
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;
}