From 75c7fcf508206232cd9c13e55522c979349a8912 Mon Sep 17 00:00:00 2001 From: tschumpr Date: Thu, 2 May 2024 09:34:24 +0200 Subject: [PATCH] Add topic info to logs --- Geodatenbezug/GeodiensteApi.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Geodatenbezug/GeodiensteApi.cs b/Geodatenbezug/GeodiensteApi.cs index 16aab83..da9a041 100644 --- a/Geodatenbezug/GeodiensteApi.cs +++ b/Geodatenbezug/GeodiensteApi.cs @@ -72,11 +72,11 @@ public async Task StartExportAsync(Topic topic) var errorResponse = JsonSerializer.Deserialize(jsonString); if (retryCount < 10) { - logger.LogInformation("Es läuft gerade ein anderer Export. Versuche es in 1 Minute erneut."); + logger.LogInformation($"{topic.TopicTitle} ({topic.Canton}): Es läuft gerade ein anderer Export. Versuche es in 1 Minute erneut."); } else { - logger.LogError("Es läuft bereits ein anderer Export. Zeitlimite überschritten."); + logger.LogError($"{topic.TopicTitle} ({topic.Canton}): Es läuft bereits ein anderer Export. Zeitlimite überschritten."); } }); @@ -114,11 +114,11 @@ public async Task CheckExportStatusAsync(Topic topic) var statusString = statusResponse.Status == GeodiensteStatus.Queued ? "in der Warteschlange" : "in Bearbeitung"; if (retryCount < 10) { - logger.LogInformation($"Export ist {statusString}. Versuche es in 1 Minute erneut."); + logger.LogInformation($"{topic.TopicTitle} ({topic.Canton}): Export ist {statusString}. Versuche es in 1 Minute erneut."); } else { - logger.LogError($"Zeitlimite überschritten. Status ist {statusString}"); + logger.LogError($"{topic.TopicTitle} ({topic.Canton}): Zeitlimite überschritten. Status ist {statusString}"); } });