Merge pull request #1382 from ahoppen/stream-index-log

Instead of sending a message to the index log when an indexing task finishes, stream results as they come in
This commit is contained in:
Alex Hoppen
2024-06-03 19:33:29 -07:00
committed by GitHub
22 changed files with 226 additions and 174 deletions

View File

@@ -125,7 +125,7 @@ extension CompilationDatabaseBuildSystem: BuildSystem {
public func prepare(
targets: [ConfiguredTarget],
indexProcessDidProduceResult: @Sendable (IndexProcessResult) -> Void
logMessageToIndexLog: @Sendable (_ taskID: IndexTaskID, _ message: String) -> Void
) async throws {
throw PrepareNotSupportedError()
}