Do codes in the console debug have any meaning?

Asked

Viewed 70 times

0

I would like to know if there is any documentation that explains in more detail what that means I/flutter,etc, and the code in parentheses. Sometimes it goes unnoticed in debug exception and on the line where.

I have this curiosity and found nothing specific.

inserir a descrição da imagem aqui

inserir a descrição da imagem aqui

2 answers

2


This information is from Logcat.

If you open your project in Android Studio and open the Logcat tab, you will see that every second thousands of messages will be generated, which are related to everything that is occurring on your phone.

Illustrative image

Imagem ilustrativa As can be seen in the image above, when debugging my project AS only filters messages from my project com.example.sales_catalog. It is also so that Flutter identifies the Exceptions and related message.

In relation to the code I/Flutter (22742), this code between parentheses is kind of the code related to that process that Flutter is listening to, in case your project is debugging

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.