Skip to content

Commit 5d9baaf

Browse files
authored
[5.10] Revert "Only show command output in verbose mode (#7078)" (#7131)
Cherry-pick of #7130. ### Motivation: With recent changes linker/compiler errors are silently consumed and don't appear in stdout or stderr. ### Modifications: This reverts commit 4c35491. ### Result: Resolves #7114.
1 parent 2290207 commit 5d9baaf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Diff for: Sources/Build/BuildOperationBuildSystemDelegateHandler.swift

+2-4
Original file line numberDiff line numberDiff line change
@@ -790,10 +790,8 @@ final class BuildOperationBuildSystemDelegateHandler: LLBuildBuildSystemDelegate
790790
queue.async {
791791
if let buffer = self.nonSwiftMessageBuffers[command.name] {
792792
self.progressAnimation.clear()
793-
if self.logLevel.isVerbose {
794-
self.outputStream.send(buffer)
795-
self.outputStream.flush()
796-
}
793+
self.outputStream.send(buffer)
794+
self.outputStream.flush()
797795
self.nonSwiftMessageBuffers[command.name] = nil
798796
}
799797
}

0 commit comments

Comments
 (0)