Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve "glUtilsParamSize" problems

I have WebView in my android app. After I start the emulator I saw many red lines that repeat lines below:

1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ glUtilsParamSize: unknow param 0x00000bd0
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ **** ERROR unknown type 0x0 (glSizeof,72)
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ glUtilsParamSize: unknow param 0x00000b44
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ glUtilsParamSize: unknow param 0x00000bd0
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ **** ERROR unknown type 0x0 (glSizeof,72)
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ glUtilsParamSize: unknow param 0x00000b44
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ glUtilsParamSize: unknow param 0x00000bd0
1656-1656/com.exercise.AndroidHTML E/eglCodecCommon﹕ **** ERROR unknown type 0x0 (glSizeof,72)
like image 822
Amir.KH Avatar asked Apr 06 '15 11:04

Amir.KH


1 Answers

Easily solvable. This way you can exclude noisy log messages and keep the log to their app only. Wonderfully extendable with new log tags to suppress.

Add your exclusions to Log Tag like this: ^(?!(eglCodecCommon|tagToExclude))

Add your package name or prefix to Package Name: com.mycompany.

This way it is possible to filter for as many strings you like and keep the log to your package.

New Logcat Filter Settings

like image 122
S. Gissel Avatar answered Oct 27 '22 01:10

S. Gissel