Skip to content

Commit

Permalink
Remove debugging for flaky test.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 648394077
Change-Id: If3304986c8d6e9d46e1de8e7cb3077f59928c6f7
  • Loading branch information
justinhorvitz authored and copybara-github committed Jul 1, 2024
1 parent 9425e36 commit 1f88b46
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,17 +395,10 @@ && shouldCheckFile(knownModifiedOutputFiles, artifact)) {
FileArtifactValue newData =
ActionOutputMetadataStore.fileArtifactValueFromArtifact(
artifact, stat, xattrProviderOverrider.getXattrProvider(syscallCache), tsgm);
// TODO: b/345207297 - Remove fine logging after flakiness is diagnosed.
if (newData.couldBeModifiedSince(lastKnownData)) {
logger.atFine().log(
"Modified output %s (%s -> %s), stat: %s", artifact, lastKnownData, newData, stat);
modifiedOutputsReceiver.reportModifiedOutputFile(
stat != null ? stat.getLastChangeTime() : -1, artifact);
dirtyKeys.add(key);
} else {
logger.atFine().log(
"Unmodified output %s (%s -> %s), stat: %s",
artifact, lastKnownData, newData, stat);
}
} catch (IOException e) {
logger.atWarning().withCause(e).log(
Expand Down

0 comments on commit 1f88b46

Please sign in to comment.