简体   繁体   中英

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)

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.

新的 Logcat 过滤器设置

After doing this Log Tag : ^(?!(eglCodecCommon|tagToExclude)) I'm getting this error.

2019-11-06 14:30:58.245 26159-26159/com.example.scroll E/HAL: PATH3 /odm/lib64/hw/gralloc.qcom.so
2019-11-06 14:30:58.245 26159-26159/com.example.scroll E/HAL: PATH2 /vendor/lib64/hw/gralloc.qcom.so
2019-11-06 14:30:58.245 26159-26159/com.example.scroll E/HAL: PATH1 /system/lib64/hw/gralloc.qcom.so
2019-11-06 14:30:58.245 26159-26159/com.example.scroll E/HAL: PATH3 /odm/lib64/hw/gralloc.msm8953.so
2019-11-06 14:30:58.245 26159-26159/com.example.scroll E/HAL: PATH2 /vendor/lib64/hw/gralloc.msm8953.so
2019-11-06 14:30:58.245 26159-26159/com.example.scroll E/HAL: PATH1 /system/lib64/hw/gralloc.msm8953.so

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM