I’m noticing a strange behaviour when i plug in any android device to my computer.
It starts showing some messages in the LogCat in Eclipse as soon as i plug it in. Same thing with my HTC and ASUS tablet.
This has never happened before and I dont remember doing anything out of ordinary when I developed my app yesterday.
Any1 has an idea how to stop this ?
Thanks in advance
From my experience it’s perfectly normal for the logcat to start displaying messages as soon as you plug in a device. At the least it means it’s working! 😉
However, once you start building and running your application and picking up errors the specific filter for your application will start displaying which will only show logs pertaining to your app.
It’s set by default to switch to your app once an error displays, but you can change that default by going to Preferences > Android > LogCat and changing “Show logcat view…” from “Error” to “Verbose” or whatever works. That way it will switch to showing your application’s logs faster. Beyond that, you can do further specific filters.
Hope that helps XD