Does Android have an accessible error log -
i (trying to) develop application plots user's track.
to i'm using locationlistener keeps crashing no obvious reason. i'm reasonably sure there bad inter-action between , other aspects of application causing problem but, unfortunately, nature of app, happens when i'm out , , not tethered pc , i'm finding difficult track down.
i've scattered try/catches throughout program but, far, have not trapped error.
does android operating system keep sort of error log of application crashes and, if so, accessible?
you can use logcat. add log.v
, log.d
, log.w
, or log.e
code , log messages show in eclipse. v verbose, d debug, w warning, , e error.
Comments
Post a Comment