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.
2 parents 01a50a3 + e5764c5 commit 6901514Copy full SHA for 6901514
Sources/SourceKitLSP/SourceKitLSPServer.swift
@@ -910,8 +910,14 @@ extension SourceKitLSPServer {
910
}
911
912
let projectRoot = await buildSystem?.projectRoot.pathString
913
+ let buildSystemType =
914
+ if let buildSystem {
915
+ String(describing: type(of: buildSystem))
916
+ } else {
917
+ "<fallback build system>"
918
+ }
919
logger.log(
- "Created workspace at \(workspaceFolder.uri.forLogging) as \(type(of: buildSystem)) with project root \(projectRoot ?? "<nil>")"
920
+ "Created workspace at \(workspaceFolder.uri.forLogging) as \(buildSystemType, privacy: .public) with project root \(projectRoot ?? "<nil>")"
921
)
922
923
let workspace = try? await Workspace(
0 commit comments