skip to Main Content

I have a flutter project which I am running through Android Studio via an Emulator. I can see the app running on the emulator, but I cannot see any output printed somewhere on Android Studio.. I have various prints in my app so I should be seeing some output.. How can I see this output on Android Studio?

3

Answers


  1. ctrl+shift+` click at output between debug console and problems

    Login or Signup to reply.
  2. You can check the toolbar in android studio and look for ‘View -> Tool Windows -> Run,’ or use ‘Command + 4’ on Mac, or ‘Alt + 4’ on Windows

    Login or Signup to reply.
  3. Logs are printed in Logcat. It is usually open but you can open it with:

    Select View > Tool Windows > Logcat from the menu bar.

    You can also then filter by your package name.

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