Reputation: 845
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
Reputation: 7824
You can view a .logcat file in Android Studio's logcat tool window, via the "Import logs from a file" button:
Upvotes: 1
Reputation: 11
You can paste saved logs into Code -> Analyze Stack Trace or Thread Dump
Upvotes: 0
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