Eclipse Mars DDMS only shows the first letter in the level and no messages

I have updated Eclipse Luna to Mars. Now in my DDMS perspective, the only column available was level and only the first letter of each entry was shown there (like here: Eclipse LogCat only shows the first letter of each message ). To fix this, I changed mine

/workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs

I added

ddms.logcat.auotmonitor.level=error  
ddms.logcat.automonitor=false  
ddms.logcat.automonitor.userprompt=true  
logcat.view.colsize.Level=54  
eclipse.preferences.version=1  
logcat.view.colsize.Application=169  
logcat.view.colsize.Time=156  
logcat.view.colsize.Tag=124  
logcat.view.colsize.PID=54  
logcat.view.colsize.Messages=100

      

However, only the first character is displayed at the level, and the "Messages" column is missing, although I specified it in the settings.

Indeed, all of these entries should be visible by default. How can I get them to work on Eclipse Mars?

+3


source to share


2 answers


Edit .Messages = 100 to.Text = 100 This works for me.



+1


source


Go to the link: /workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/ And open com.android.ide.eclipse.ddms.prefs file with any editor and copy the following code into that file. This will definitely work.



com.android.ide.eclipse.ddms.explorer.data=73
com.android.ide.eclipse.ddms.explorer.info=76
com.android.ide.eclipse.ddms.explorer.name=239
com.android.ide.eclipse.ddms.explorer.permissions=76
com.android.ide.eclipse.ddms.explorer.size=120
com.android.ide.eclipse.ddms.explorer.time=42
ddms.logcat.auotmonitor.level=error
ddms.logcat.automonitor.userprompt=true
devicePanel.Col0=117
devicePanel.Col1=51
devicePanel.Col4=68
eclipse.preferences.version=1
logcat.view.colsize.Application=219
logcat.view.colsize.Level=29
logcat.view.colsize.PID=50
logcat.view.colsize.TID=50
logcat.view.colsize.Tag=143
logcat.view.colsize.Text=543
logcat.view.colsize.Time=130
threadPanel.Col0=32
threadPanel.Col1=44
threadPanel.Col2=72
threadPanel.Col3=45
threadPanel.Col4=45
threadPanel.Col5=280
threadPanel.stack.col0=515

      

0


source







All Articles