0

In my logcat in Android Studio is going crazy full of these log below. Does anyone know is that and how to stop ? Thanks

02-25 08:28:41.090 13291-13291/com.myapp D/InputTransport: channel '18179b0f com.myapp/com.myapp.views.ui.screen.BaseActivity (client)' consumer ~ consume: consumeBatches=true, frameTime=19700766116926
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
Thiago
  • 12,778
  • 14
  • 93
  • 110

1 Answers1

0

The Android logging system provides a mechanism for collecting and viewing system debug output.

Activity (client)' consumer ~ consume: consumeBatches=true, frameTime=19700766116926

Logcat dumps a log of system messages, which include things such as stack traces when the emulator throws an error and messages that you have written from your application by using the Log class.

When Android is running, it's generating all kinds of system messages.Don't worry about it .Its not harmful .

IntelliJ Amiya
  • 74,896
  • 15
  • 165
  • 198