We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d657e93 commit 4dd7da2Copy full SHA for 4dd7da2
Plugins/GRPCProtobufGeneratorCommand/Plugin.swift
@@ -232,14 +232,12 @@ func executeProtocInvocation(
232
}
233
234
func printProtocOutput(_ stdOut: Pipe, verbose: Bool) throws {
235
- let prefix = "\t"
236
-
237
if verbose, let outputData = try stdOut.fileHandleForReading.readToEnd() {
238
let output = String(decoding: outputData, as: UTF8.self)
239
let lines = output.split { $0.isNewline }
240
print("protoc output:")
241
for line in lines {
242
- print("\(prefix)\(line)")
+ print("\t\(line)")
243
244
245
0 commit comments