Skip to content

Commit

Permalink
Revert "Remove exception"
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed May 2, 2024
1 parent 75c7fcf commit ef23294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Geodatenbezug/Processors/TopicProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public async Task<ProcessingResult> ProcessAsync()
{
if (processingResult.Code == HttpStatusCode.Processing)
{
logger.LogError($"Fehler beim Verarbeiten des Themas {topic.TopicTitle} ({topic.Canton}): {ex.Message}");
logger.LogError(ex, $"Fehler beim Verarbeiten des Themas {topic.TopicTitle} ({topic.Canton}): {ex.Message}");

processingResult.Code = HttpStatusCode.InternalServerError;
processingResult.Reason = ex.Message;
Expand Down

0 comments on commit ef23294

Please sign in to comment.