Skip to content

Commit

Permalink
Add exception to error log
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Apr 30, 2024
1 parent 7a0f840 commit 7e0adcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Geodatenbezug/GeodiensteApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public async Task<List<Topic>> RequestTopicInfoAsync()
}
catch (HttpRequestException ex)
{
logger.LogError($"Fehler beim Abrufen der Themeninformationen von geodienste.ch: {ex.Message}");
logger.LogError(ex, $"Fehler beim Abrufen der Themeninformationen von geodienste.ch: {ex.Message}");
return [];
}
}
Expand Down

0 comments on commit 7e0adcc

Please sign in to comment.