skip to Main Content

I am facing this issue in Android Studio, it does not affect me directly but it is too annoying because if I have to print something on console, it get lost in multiple lines of message that is thrown when I tap on android screen. For reference I am using Redmi 13C for testing my apps.
Message on Console

I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)
I/gralloc4(31985): @set_metadata: update dataspace from GM (0x00000000 -> 0x08010000)

I could not figure out how this message occurs but for single tap this same message appears on console multiple times.

2

Answers


  1. These are just debug logs of the various operations that happen while you navigate through your application/device
    These are not bugs or problems, just records

    In fact, if it’s annoying for you, you can just remove it by right-clicking and selecting ‘fold lines like this’, as shown in the photo:

    enter image description here

    Login or Signup to reply.
  2. Did you find a solution for this? I’m experiencing the same issue in VS Code.

    I think the problem might lie with the Redmi phones because I have Note 12. It doesn’t seem to happen on other devices.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search