CommunicationService

This commit is contained in:
Digital Data - Marlon Schreiber
2019-08-26 11:51:45 +02:00
parent f418074011
commit 974d55c03c
2 changed files with 26 additions and 18 deletions

View File

@@ -67,7 +67,7 @@ Public Class MSSQLServer
End Using
Catch ex As Exception
_Logger.Error(ex)
_Logger.Debug("sqlcommand: " & sqlcommand)
_Logger.Warn("sqlcommand: " & sqlcommand)
Return Nothing
End Try
End Function
@@ -99,7 +99,7 @@ Public Class MSSQLServer
End Using
Catch ex As Exception
_Logger.Error(ex)
_Logger.Debug("executeStatement: " & SQLCommand)
_Logger.Warn("executeStatement: " & SQLCommand)
Return False
End Try
End Function
@@ -159,7 +159,7 @@ Public Class MSSQLServer
End Using
Catch ex As Exception
_Logger.Error(ex)
_Logger.Debug("executeStatement: " & executeStatement)
_Logger.Warn("executeStatement: " & executeStatement)
End Try
End Sub