Skip to content

Commit

Permalink
Be explicit about engineId.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 committed Sep 12, 2024
1 parent 5463c36 commit cfb129a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,12 @@ CancellationToken cancellationToken
);
if (usfm == "")
return NoContent();
_logger.LogInformation("Returning USFM for {TextId} in {CorpusId} of {EngineId}", textId, corpusId, id);
_logger.LogInformation(
"Returning USFM for {TextId} in engine {EngineId} for corpus {corpusId}",
textId,
id,
corpusId
);
return Content(usfm, "text/plain");
}

Expand Down

0 comments on commit cfb129a

Please sign in to comment.