My PC running on Debian Jessie & Logcat's messages are all invisible on eclipse Mars. I tried a solution here, but no help. What to do now?
---------- UPDATE ----------
I tried the followings:
- Change logcat/ddms's metadata settings in com.android.ide.eclipse.ddms.prefs file.
- Don't use GTK3 by export SWT_GTK3=0
But both failed to fix the situation.
There are some problems with GTK and Eclipse Mars. Try to set the SWT_GTK3 environment variable to 0 before launching eclipse:
I got the same issue on eclipse MARS, ubuntu14.04 and i solved the problem by modifying the file.
/workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs
you should close the eclipse and paste following code.
Then restart the eclipse. You could adjust by dragging the section of the Logcat as your prefer.
I had a similar problem (Eclipse Mars on Arch Linux) and it turned out to be a GTK issue. The solution was to add the following two lines
in eclipse.ini right before the
line, as explained in https://bbs.archlinux.org/viewtopic.php?id=200053 Note that the location of eclipse.ini is distro specific (in my case it was under /usr/lib/eclipse) and multiple copies of the file in different directories can override the same setting, so make sure you are adding the lines in the right place.
Same problem here! Arch linux with eclipse-java 4.5.0-3
My solution was this reply: https://stackoverflow.com/a/28856904/2398244