Kenenisa Bekele
Kenenisa Bekele

Reputation: 845

Android Studio Logcat to read/open saved logs

I saved some logs and would like to open them with Android Studio - Logcat interface and be able to see the colours and apply some filters just as if the phone was connected.

Is this possible ?

Upvotes: 2

Views: 1792

Answers (3)

Tom
Tom

Reputation: 7824

You can view a .logcat file in Android Studio's logcat tool window, via the "Import logs from a file" button:

enter image description here

Upvotes: 1

Ambal
Ambal

Reputation: 11

You can paste saved logs into Code -> Analyze Stack Trace or Thread Dump

Upvotes: 0

MACROSystems
MACROSystems

Reputation: 674

What I normally do when I need to visualise different logcats is, I open them at Visual Studio Code and apply "Log" language mode. With "Log" language mode you can see all the log colors.

Upvotes: 1

Related Questions