Use Logger Module

This commit is contained in:
Jonathan Jenne
2019-04-16 14:01:35 +02:00
parent 4c86bd4c5c
commit 31bf65a5f0
37 changed files with 938 additions and 859 deletions

View File

@@ -61,6 +61,7 @@ Public Class ClassDragDrop
Try
dragDropData = row.Item("GUID") & "|" & source
Catch ex As Exception
LOGGER.Error(ex)
Try
dragDropData = row.Item("USER_ID") & "|" & source
Catch ex1 As Exception
@@ -78,6 +79,7 @@ Public Class ClassDragDrop
End If
End If
Catch ex As Exception
LOGGER.Error(ex)
MsgBox("Error in view_MouseMove: " & ex.Message, MsgBoxStyle.Critical)
End Try
End Sub