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
diff --git a/libs/graphicsenv/GraphicsEnv.cpp b/libs/graphicsenv/GraphicsEnv.cpp
index 660e3c3..aa2f394 100644
--- a/libs/graphicsenv/GraphicsEnv.cpp
+++ b/libs/graphicsenv/GraphicsEnv.cpp
@@ -262,7 +262,7 @@
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;
}