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

@@ -200,7 +200,7 @@ Public Sub HandleJob(Job As HttpJob) As DBResult
table.Columns.Initialize
table.rows.Initialize
table.Tag = Job.Tag
If jobTagAnterior <> Job.Tag Then LogColor("HandleJob: '"&Job.Tag&"'", Colors.Blue) 'Mod por CHV - 211023
If starter.logger and jobTagAnterior <> Job.Tag Then LogColor("HandleJob: '"&Job.Tag&"'", Colors.Blue) 'Mod por CHV - 211023
jobTagAnterior = Job.Tag 'Mod por CHV - 211023
If method = "query" Then
Dim numberOfColumns As Int = ReadInt(In)