@@ -206,13 +206,13 @@ Public Class Nut_Socket
206206 streamInUse = True
207207
208208 If ConnectionStatus Then
209- LogFile.LogTracing( "Sending query " & Query_Msg, LogLvl.LOG_DEBUG, Me )
209+ ' LogFile.LogTracing("Sending query " & Query_Msg, LogLvl.LOG_DEBUG, Me)
210210 WriterStream.WriteLine(Query_Msg & vbCr)
211211 WriterStream.Flush()
212212
213213 DataResult = Trim(ReaderStream.ReadLine())
214214 streamInUse = False
215- LogFile.LogTracing( "Done processing response for query " & Query_Msg, LogLvl.LOG_DEBUG, Me )
215+ ' LogFile.LogTracing("Done processing response for query " & Query_Msg, LogLvl.LOG_DEBUG, Me)
216216
217217 Response = EnumResponse(DataResult)
218218 finalTransaction = New Transaction(Query_Msg, DataResult, Response)
@@ -238,7 +238,7 @@ Public Class Nut_Socket
238238 Dim start As Date = Date .Now
239239
240240 ' Read in first line to get initial response.
241- LogFile.LogTracing( "Sending LIST query " & Query_Msg, LogLvl.LOG_DEBUG, Me )
241+ ' LogFile.LogTracing("Sending LIST query " & Query_Msg, LogLvl.LOG_DEBUG, Me)
242242 Dim response = Query_Data(Query_Msg)
243243 streamInUse = True
244244 Dim readLine As String
@@ -252,7 +252,7 @@ Public Class Nut_Socket
252252 Loop Until (IsNothing(readLine) Or (ReaderStream.Peek < 0 ))
253253
254254 streamInUse = False
255- LogFile.LogTracing( "Done processing LIST response for query " & Query_Msg, LogLvl.LOG_DEBUG, Me )
255+ ' LogFile.LogTracing("Done processing LIST response for query " & Query_Msg, LogLvl.LOG_DEBUG, Me)
256256
257257 Dim Key As String
258258 Dim Value As String
0 commit comments