From 2d7af74ce2107a1a8bbaffa94ea71e92d036be0f Mon Sep 17 00:00:00 2001 From: Cody Northrop Date: Thu, 24 Jan 2019 16:55:03 -0700 Subject: GraphicsEnv - remove deprecated error Now that we check a whitelist for ANGLE, it is no longer an error to not have an app name when initializing the driver. Bug: 80239516 Test: atest CtsAngleIntegrationHostTestCases Change-Id: I86c7e29d25b747a3494d4b1d65c949e21ddc6c2c --- libs/graphicsenv/GraphicsEnv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/graphicsenv/GraphicsEnv.cpp') diff --git a/libs/graphicsenv/GraphicsEnv.cpp b/libs/graphicsenv/GraphicsEnv.cpp index 660e3c3ca8..aa2f394835 100644 --- a/libs/graphicsenv/GraphicsEnv.cpp +++ b/libs/graphicsenv/GraphicsEnv.cpp @@ -262,7 +262,7 @@ bool GraphicsEnv::shouldUseAngle(std::string appName) { bool GraphicsEnv::shouldUseAngle() { // Make sure we are init'ed if (mAngleAppName.empty()) { - ALOGE("App name is empty. setAngleInfo() must be called first to enable ANGLE."); + ALOGV("App name is empty. setAngleInfo() has not been called to enable ANGLE."); return false; } -- cgit v1.2.3-59-g8ed1b