From 6ce39ea26176f514b31a5ed8370cd25e4dfc0efa Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 15 Apr 2021 11:15:09 +0200 Subject: [PATCH] Jobs/EDMI: Add Logging for GetOriginalEmailPath --- Modules.Jobs/EDMI/ZUGFeRD/EmailFunctions.vb | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules.Jobs/EDMI/ZUGFeRD/EmailFunctions.vb b/Modules.Jobs/EDMI/ZUGFeRD/EmailFunctions.vb index a34d866e..af586642 100644 --- a/Modules.Jobs/EDMI/ZUGFeRD/EmailFunctions.vb +++ b/Modules.Jobs/EDMI/ZUGFeRD/EmailFunctions.vb @@ -176,6 +176,7 @@ Public Class EmailFunctions If IO.File.Exists(oAttachmentPath) Then Return oAttachmentPath Else + _logger.Warn("Email File {0} does not exist. Empty String will be returned.", oAttachmentPath) Return String.Empty End If End Function