Skip to content

Commit

Permalink
Add topic info to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed May 2, 2024
1 parent 4862590 commit 75c7fcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Geodatenbezug/GeodiensteApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ public async Task<HttpResponseMessage> StartExportAsync(Topic topic)
var errorResponse = JsonSerializer.Deserialize<GeodiensteExportError>(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.");
}
});

Expand Down Expand Up @@ -114,11 +114,11 @@ public async Task<HttpResponseMessage> 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}");
}
});

Expand Down

0 comments on commit 75c7fcf

Please sign in to comment.