add tracing of service

service_trace
Georg Lukas 2011-07-30 14:42:31 +02:00
rodzic 16d2c88783
commit 620d1673b3
2 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -10,6 +10,7 @@
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<uses-library android:name="com.google.android.maps" />

Wyświetl plik

@ -4,6 +4,7 @@ import _root_.android.app.Service
import _root_.android.content.{Context, Intent, IntentFilter}
import _root_.android.location._
import _root_.android.os.{Bundle, IBinder, Handler}
import _root_.android.os.Debug
import _root_.android.preference.PreferenceManager
import _root_.android.util.Log
import _root_.android.widget.Toast
@ -95,6 +96,8 @@ class AprsService extends Service with LocationListener {
val upd_int = prefs.getStringInt("interval", 10)
val upd_dist = prefs.getStringInt("distance", 10)
Debug.startMethodTracing("aprsdroid")
// display notification (even though we are not actually started yet,
// but we need this to prevent error message reordering)
fastLaneLoc = null
@ -152,6 +155,7 @@ class AprsService extends Service with LocationListener {
unregisterReceiver(msgNotifier)
ServiceNotifier.instance.stop(this)
running = false
Debug.stopMethodTracing()
}
def getGpsInterval() : Int = {