2

It's a very basic question, I was getting Logs of information I create in code in Run tab after updating to Android Studio 2.3 they are no longer appear in run tab only in Android Monitor tab

I don't want to search or filter all logs I just want to get those Logs back to the Run Tab, any ideas about that?

Thanks and sorry if this was stupid question

Dasser Basyouni
  • 3,142
  • 5
  • 26
  • 50
  • Duplicate? https://stackoverflow.com/questions/42574428/debug-console-doesnt-show-messages-after-upgrading-android-studio-to-2-3 – OneCricketeer Mar 06 '17 at 18:43
  • Why can't you just use Android Monitor? That is the tool you should be using. The "Run" tab only shows you the `adb install` command AFAIK – OneCricketeer Mar 06 '17 at 18:43
  • @cricket_007 thank you for mentioning that question but it is not the same, I just want to see the adb state and the logs I wrote in code as the previous 2.2 Android Studio if it still be an option and is not deleted Android Studio – Dasser Basyouni Mar 06 '17 at 19:11
  • 1
    And you should see that in Android Monitor – OneCricketeer Mar 06 '17 at 20:50

2 Answers2

2

I had the same problem, and i solved using Android Monitor tab, hiding time, process info and package name with this method. Now it shows equals run tab.

See example

iehrlich
  • 3,572
  • 4
  • 34
  • 43
Pemmpz
  • 21
  • 3
1

Not really sure what you are seeing... I use pure IntelliJ IDEA, and it has (always?) been like this.

The Run tab is the Gradle logs.

enter image description here

And the Android monitor is where the Logcat exists.

enter image description here

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245