Thanks. Window->Show View -> (other) LogCat then writing to that
window with Log.v(String sc, String msg) works. This brings up
another question or comment from the code example on your link.
Why do you (and Google) use the "public static final String TAG"
syntax for a class label when you could just use
this.getClass().getSimpleName() which seems simpler and safer? Don't
reinvent the wheel. Eliminate TAG.
Log.v(this.getClass().getSimpleName(), "this is the message" );
Jim
n Jan 30, 4:10 am, plusminus <stoe...@gmx.de> wrote:
Hello jim,
why not using the LogCat, it also displays in Eclipse (DDMS-View) ?
have a look at this:http://www.anddev.org/viewtopic.php?p=284#284
Regards, plusminushttp://anddev.org
# Worlds largest Android Development Community / Tutorials
On Jan 30, 12:52 am, jim <jehr...@dairyvets.com> wrote:
Is there a simple way to send messages, such as debugging information,
to the Eclipse console window when running an Activity on the Android