Skip to content

Commit

Permalink
fix(api): Correct search endpoint analytics token
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Aug 8, 2024
1 parent 480f142 commit a43b9bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/Features/Searching/Decorators.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public async Task<IApiResponse> Handle(SearchQuery.Query computation, Cancellati

if (!table.Contains("sgid")) {
_log?.ForContext("table", computation._tableName)
.Information("Open SGID query");
.Information("Analytics:open-sgid-query");

return await _decorated.Handle(computation, cancellationToken);
}
Expand Down Expand Up @@ -43,7 +43,7 @@ public async Task<IApiResponse> Handle(SearchQuery.Query computation, Cancellati
_log?.ForContext("input", computation._tableName)
.ForContext("legacy", true)
.ForContext("table", mutated._tableName)
.Information("Open SGID query");
.Information("Analytics:open-sgid-query");

return await _decorated.Handle(mutated, cancellationToken);
}
Expand Down

0 comments on commit a43b9bb

Please sign in to comment.