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
diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp
index 44b5560..67fbae5 100644
--- a/opengl/libs/EGL/egl.cpp
+++ b/opengl/libs/EGL/egl.cpp
@@ -222,7 +222,7 @@
}
char value[PROPERTY_VALUE_MAX];
property_get("debug.egl.callstack", value, "0");
- if (true || atoi(value)) {
+ if (atoi(value)) {
CallStack stack(LOG_TAG);
}
}