diff options
| author | 2019-01-24 16:55:03 -0700 | |
|---|---|---|
| committer | 2019-01-24 16:57:28 -0700 | |
| commit | 2d7af74ce2107a1a8bbaffa94ea71e92d036be0f (patch) | |
| tree | d5d802b18d1417fbfa3e0dfc6b6cef766438d8b4 | |
| parent | 57ba2f1942f1fae1bd195b8c0f7fda8adbf9c41e (diff) | |
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
| -rw-r--r-- | libs/graphicsenv/GraphicsEnv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |