Android Studio Logcat colors

AndroidAndroid StudioIntellij IdeaIdeLogcat

Android Problem Overview


It is really hard to follow up Android logcat output all in a same color.

Is there any way to change the log colors?

Android Solutions


Solution 1 - Android

I know that using solid black color logcat in Android Studio is awful!!!

Here is my best practice colour codes that you can use for changing the face of you logcat in Android Studio to make it more useful.

Go to Android Studio Preferences and search for logcat and 'Save As' your own scheme:

Assert: 9C27B0

Debug: 2196F3

Error: F44336

Info: 4CAF50

Warning: FFC107

Android Studio Logcat Default Colors

Android Studio Logcat Darcula Colors

All colors are picked carefully from google Material Design palette and can help you with more readability in both Default and Darcula theme:

sharing is caring :)

Solution 2 - Android

In addition to @Monsen Mirhoseine's answer, I exported his scheme to easier import. You can do it by downloading this file, and then selecting to avoid typing every color.

                        Import Scheme screenshoot

Solution 3 - Android

You can download this files filesCustomAndroid 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.

Solution 4 - Android

This is my Logcat custom color scheme for idea / android studio:

  • understated verbose log
  • emphasized assert log

preview

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
QuestionMohsen MirhoseiniView Question on Stackoverflow
Solution 1 - AndroidMohsen MirhoseiniView Answer on Stackoverflow
Solution 2 - AndroidcrgarridosView Answer on Stackoverflow
Solution 3 - AndroidPabelView Answer on Stackoverflow
Solution 4 - Androidfireb86View Answer on Stackoverflow