Fix logging in DocumentLoader

This commit is contained in:
Jonathan Jenne 2023-11-07 10:01:22 +01:00
parent c1fa500f36
commit 34c8ecbee5

View File

@ -98,8 +98,8 @@ Namespace Documents
oDocument = LoadDocumentData(oDocument, pTemplate, TemplateConfig)
Catch ex As Exception
Throw ex
Logger.Error(ex)
Throw ex
End Try
@ -107,8 +107,8 @@ Namespace Documents
oDocument = Await MatchDataFromWinLine(oDocument, Winline.Mandators, pMandator, pTemplate)
Catch ex As Exception
Throw ex
Logger.Error(ex)
Throw ex
End Try
@ -116,8 +116,8 @@ Namespace Documents
oDocument = MarkRequiredFields(oDocument)
Catch ex As Exception
Throw ex
Logger.Error(ex)
Throw ex
End Try