Skip to content

Commit e07a275

Browse files
committed
Fix incorrect log message in JSONRPCConnection
Not all JSON-RPC connections are to build servers. They can also be to clangd.
1 parent a22bf90 commit e07a275

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/LanguageServerProtocolJSONRPC/JSONRPCConnection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public final class JSONRPCConnection: Connection {
219219
}
220220
let process = Foundation.Process()
221221
logger.log(
222-
"Launching build server at \(executable.description) with options [\(arguments.joined(separator: " "))]"
222+
"Launching JSON-RPC connection to \(executable.description) with options [\(arguments.joined(separator: " "))]"
223223
)
224224
process.executableURL = executable
225225
process.arguments = arguments

0 commit comments

Comments
 (0)