ZUGFeRDService: Improve logging of custom options

This commit is contained in:
Jonathan Jenne 2021-07-20 13:21:25 +02:00
parent b323445821
commit 623309cd44

View File

@ -63,6 +63,11 @@ Public Class ThreadRunner
oArgs.InsertIntoSQLServer = True oArgs.InsertIntoSQLServer = True
End If End If
_logger.Debug("Custom Options:")
_logger.Debug("ExceptionEmailAddress: {0}", oArgs.ExceptionEmailAddress)
_logger.Debug("IgnoreRejectionStatus: {0}", oArgs.IgnoreRejectionStatus)
_logger.Debug("MaxAttachmentSizeInMegaBytes: {0}", oArgs.MaxAttachmentSizeInMegaBytes)
_jobArguments = oArgs _jobArguments = oArgs
_logger.Debug("Checking SuccessDirectory {0}", oArgs.SuccessDirectory) _logger.Debug("Checking SuccessDirectory {0}", oArgs.SuccessDirectory)