Se agregó la variable logger en starter y condiciones para que solo mande logs cuando esta abierta la aplicacion

This commit is contained in:
2024-02-16 15:14:42 -06:00
parent 12f6e15244
commit 3b1aa3af9b
4 changed files with 16 additions and 9 deletions

View File

@@ -13,6 +13,7 @@ Sub Process_Globals
Public rp As RuntimePermissions
Public FLP As FusedLocationProvider
Dim dentroDeGeocerca As Map
Dim logger As Boolean = False
End Sub
Sub Service_Create
@@ -21,7 +22,11 @@ Sub Service_Create
End Sub
Sub Service_Start (StartingIntent As Intent)
#if DEBUG
logger = True
#else
Logger = False
#End If
End Sub
Sub Application_Error (Error As Exception, StackTrace As String) As Boolean