Colored logcat in android studio by colorpid

Android Studio

Android Studio Problem Overview


according to this link github colored logcat I am looking for any solution how to use it in android studio/intellij. Is there in android studio any option to modify calling adb logcat? Here is the example how it works. enter image description here

Android Studio Solutions


Solution 1 - Android Studio

You can customize colors at Preferences – Editor – Color Scheme – Android Logcat.

Android logcat color editor

Here is Darcula theme, suggested by Matouš Skála:

Darcula colors:

Debug  : 6897BB
Info   : 6A8759
Warn   : BBB529
Error  : FF6B68
Assert : 9876AA

Darcula theme

Only show logcat from selected process is supported by default feature at AndroidStudio. If you are not satisfied with current customizations you need to continue to use your favorite shell with JakeWharton srcipt as for now.

Solution 2 - Android Studio

As of Android Studio 1.1.0 the Preferences menu was not visible in the menu bar (Atleast in Ubuntu). So I am posting a new answer that might help others:

Goto FileSettings or press Ctrl+Alt+S this will open the Settings dialog (see screenshot)

Now under IDE Settings navigate to EditorColors & FontsAndroid Logcat you can customize the colors of your choice.

NOTE: make sure you un-check the Inherit Attributes From: checkbox in order to edit the scheme.

Settings Dialog

Solution 3 - Android Studio

If you already use Solarized Dark elsewhere, try these with Darcula:

Verbose   657B83
Debug     93A1A1
Info      22AAAA
Warning   B58900
Error     CB4B16
Assert    6C71C4

Preview of Solarized color scheme on background of dark grey.

Solution 4 - Android Studio

You can download this files filesCustomAndroidStudio and copy in

Mac: /Users/.../Library/Preferences/AndroidStudioXX.XX/ Windows: C:\Users....AndroidStudioXX.XX\config\

Then go to logcat in settings and choose the file.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondeadfishView Question on Stackoverflow
Solution 1 - Android StudioSergii PechenizkyiView Answer on Stackoverflow
Solution 2 - Android StudioSMRView Answer on Stackoverflow
Solution 3 - Android StudioAri LacenskiView Answer on Stackoverflow
Solution 4 - Android StudioPabelView Answer on Stackoverflow