Skip to content

Commit

Permalink
Reduce loglevel for tags without area
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Dec 3, 2024
1 parent 28482db commit dd90dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/Services/StidService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class StidService(ILogger<StidService> logger, IDownstreamApi stidApi, IA
if (stidTagAreaResponse.LocationCode == null)
{
string errorMessage = $"Could not get area name from STID for tag {tag}";
logger.LogError("{Message}", errorMessage);
logger.LogDebug("{Message}", errorMessage);
return null;
}

Expand Down

0 comments on commit dd90dcb

Please sign in to comment.