EDMIService: Fix error logging

This commit is contained in:
Jonathan Jenne
2022-01-18 13:26:12 +01:00
parent 66bec3714a
commit 511b16560a
4 changed files with 4 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ Namespace Methods.Database.GetDatatable
Return New GetDatatableResponse(oDatatable)
Catch ex As Exception
Logger.Warn("Error occurred while getting database table!")
Logger.Error(ex)
Return New GetDatatableResponse(ex)
End Try
End Function