Skip to content

Commit

Permalink
Merged PR 740597: Add extra logging for file content table update
Browse files Browse the repository at this point in the history
Add extra logging for file content table update
  • Loading branch information
smera committed Sep 21, 2023
1 parent c846d1c commit 47ad062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Public/Src/Engine/Scheduler/Scheduler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7214,7 +7214,7 @@ Possible<Unit> IFileContentManagerHost.ReportFileArtifactPlaced(in FileArtifact
}
catch (BuildXLException e)
{
return new NativeFailure(e.GetLogEventErrorCode()).Annotate(e.Message);
return new NativeFailure(e.GetLogEventErrorCode()).Annotate($"An error occurred updating the file content table for modified file '{pathAsString}'. Details: {e.Message}");
}
}

Expand Down

0 comments on commit 47ad062

Please sign in to comment.