Skip to content

Commit

Permalink
feat(java): log the CU digest at start of indexing (#5865)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysachs committed Sep 27, 2023
1 parent 3a8d7b9 commit 774ac20
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ public void analyzeRequest(AnalysisRequest req, FactEmitter emitter)
revision = null;
}
logger.atInfo().log(
"Analyzing compilation: {%s}",
TextFormat.shortDebugString(req.getCompilation().getVName()));
"Analyzing compilation: %s {%s}",
req.getCompilationDigest(), TextFormat.shortDebugString(req.getCompilation().getVName()));
analyzeCompilation(req.getCompilation(), Optional.ofNullable(revision), fileData, emitter);
} catch (InterruptedException e) {
throw e;
Expand Down

0 comments on commit 774ac20

Please sign in to comment.