views:

1313

answers:

2

I'm pretty new to Eclipse and Mojo (.NET guy). I'm having difficulty debugging. I can set breakpoints and switch to the "Debug" Perspective, but no matter what I can do (I am running in debug mode), I can't seem to get the IDE to stop at a breakpoint in the emulator. I'm sure it's a pretty newbie mistake with Eclipse. Anyone have a good step by step I can follow.

+2  A: 

Palm has a debugger as part of the command line tools. You can set break points and check variables.

Debugger Info

Gthompson83
+4  A: 

Currently, there is no way to set a breakpoint in eclipse for use with the palm emulator.

As Gtompson83 mentioned, all we've got to work with is the gdb-style command line debugger that is included with the SDK.

Yes it's a pain.

I find it easier to attach to the emulator via ssh (scroll down to "Debugging" section) to view logging, and then just using logging in your app to figure out what is going on.

TM
I successfully got in via ssh and used the 'log' command, but what is the appropriate way to stop logging? 'quit', 'exit' etc. seem to be non-responsive.
Kyle B.
ctrl-c will get you out of the logger. But the app never "Stops logging", it's just whether or not anything is looking at the log output.
TM