Skip to content

Commit

Permalink
chore(api): improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed May 9, 2024
1 parent 25beb70 commit f6ccdb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/Features/Geocoding/Geocode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private IReadOnlyCollection<Candidate> ProcessResult(LocatorResponse response, L
if (response.Error?.Code == 500) {
_log?.Fatal("geocoder down {locator.Name}. message: {error.Message}", locator.Name, response.Error.Message);

throw new GeocodingException($"{locator.Name} geocoder is not started. {response.Error}");
throw new GeocodingException($"{locator.Name} geocoder is not started. {@response.Error}");
}

if (response.Candidates == null) {
Expand Down

0 comments on commit f6ccdb0

Please sign in to comment.