Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn off line breaking in logcat in adt 20

Tags:

android

logcat

Is there a way to disable line breaking in the newest logcat (ADT 20)? Stack traces are a pain to read now.

Logcat just gets worse and worse with updates - first pause issues now this.

like image 900
kajman Avatar asked Jul 06 '12 12:07

kajman


People also ask

What is logcat buffer?

Logcat is a command-line tool that dumps a log of system messages, including stack traces when the device throws an error and messages that you have written from your app with the Log class. This page is about the command-line logcat tool, but you can also view log messages from the Logcat window in Android Studio.

How do I read Logcat logs?

View your app logsThe Logcat window shows the log messages for the selected app, as selected from the dropdown lists at the top of the window, as shown in figure 1. By default, logcat displays just the log messages for your app running on the device. To change this default, see how to filter logcat messages.


1 Answers

You can still use the deprecated old version of Logcat, if you want. You can launch the same in eclipse using following path,

Window --> Show View --> Other --> Android --> LogCat (deprecated)

like image 77
Vijay C Avatar answered Dec 07 '22 05:12

Vijay C