ZUGFeRD Service: move worker busy message to info

This commit is contained in:
Jonathan Jenne 2021-01-12 12:21:48 +01:00
parent 644da11e11
commit 45258d1257

View File

@ -117,7 +117,7 @@ Public Class ThreadRunner
If Not _workerThread.IsBusy Then
_workerThread.RunWorkerAsync(_jobArguments)
Else
_logger.Warn("Worker is busy")
_logger.Info("Worker is busy, skipping execution.")
End If
End Sub