From 1f246d73d809f1502eb816b86b5d3c3f4de728dc Mon Sep 17 00:00:00 2001 From: John Reck Date: Thu, 24 Apr 2014 23:34:32 +0000 Subject: [PATCH] Revert "Temporarily turn on callstack logging" Bug: 13927881 'twas useful and perhaps should be always enabled (please?) but not like this, so reverting. This reverts commit db4488565a791fc769b0b0b6ca4a0689eb3d5f4e. Change-Id: I9a78c6d6e48342ef6ca1f2f7b5303ca47ccc6086 --- opengl/libs/EGL/egl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp index 44b556024..67fbae5dd 100644 --- a/opengl/libs/EGL/egl.cpp +++ b/opengl/libs/EGL/egl.cpp @@ -222,7 +222,7 @@ static int gl_no_context() { } char value[PROPERTY_VALUE_MAX]; property_get("debug.egl.callstack", value, "0"); - if (true || atoi(value)) { + if (atoi(value)) { CallStack stack(LOG_TAG); } }