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
ctrl+shift+` click at output between debug console and problems
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
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.