diff --git a/Demos/SwiftMCPDemo/Commands/HTTPSSECommand.swift b/Demos/SwiftMCPDemo/Commands/HTTPSSECommand.swift index 1aa3998..43a1d58 100644 --- a/Demos/SwiftMCPDemo/Commands/HTTPSSECommand.swift +++ b/Demos/SwiftMCPDemo/Commands/HTTPSSECommand.swift @@ -4,9 +4,6 @@ import ArgumentParser import SwiftMCP import Logging import ServiceLifecycle -#if canImport(OSLog) -import OSLog -#endif /** A command that starts an HTTP server with Server-Sent Events (SSE) support for SwiftMCP. diff --git a/Demos/SwiftMCPDemo/Commands/StdioCommand.swift b/Demos/SwiftMCPDemo/Commands/StdioCommand.swift index 5ae9251..e2add09 100644 --- a/Demos/SwiftMCPDemo/Commands/StdioCommand.swift +++ b/Demos/SwiftMCPDemo/Commands/StdioCommand.swift @@ -5,9 +5,6 @@ import SwiftMCP import Logging import NIOCore import ServiceLifecycle -#if canImport(OSLog) -import OSLog -#endif /** A command that processes JSON-RPC requests from standard input and writes responses to standard output. diff --git a/Demos/SwiftMCPDemo/Commands/TCPBonjourCommand.swift b/Demos/SwiftMCPDemo/Commands/TCPBonjourCommand.swift index f725ce3..65dc427 100644 --- a/Demos/SwiftMCPDemo/Commands/TCPBonjourCommand.swift +++ b/Demos/SwiftMCPDemo/Commands/TCPBonjourCommand.swift @@ -4,9 +4,6 @@ import ArgumentParser import SwiftMCP import Logging import ServiceLifecycle -#if canImport(OSLog) -import OSLog -#endif /** A command that exposes the demo server over TCP with Bonjour discovery. diff --git a/Demos/SwiftMCPDemo/MCPCommand.swift b/Demos/SwiftMCPDemo/MCPCommand.swift index 61f6099..8696e69 100644 --- a/Demos/SwiftMCPDemo/MCPCommand.swift +++ b/Demos/SwiftMCPDemo/MCPCommand.swift @@ -5,10 +5,6 @@ import SwiftMCP import Logging import NIOCore import Dispatch - -#if canImport(OSLog) -import OSLog -#endif #endif /** diff --git a/Demos/SwiftMCPIntentsDemo/Commands/HTTPSSECommand.swift b/Demos/SwiftMCPIntentsDemo/Commands/HTTPSSECommand.swift index 46158e2..58ec38b 100644 --- a/Demos/SwiftMCPIntentsDemo/Commands/HTTPSSECommand.swift +++ b/Demos/SwiftMCPIntentsDemo/Commands/HTTPSSECommand.swift @@ -4,9 +4,6 @@ import ArgumentParser import SwiftMCP import Logging import ServiceLifecycle -#if canImport(OSLog) -import OSLog -#endif /** A command that starts an HTTP server with Server-Sent Events (SSE) support for SwiftMCP. diff --git a/Demos/SwiftMCPIntentsDemo/Commands/StdioCommand.swift b/Demos/SwiftMCPIntentsDemo/Commands/StdioCommand.swift index 648f74e..4b775f4 100644 --- a/Demos/SwiftMCPIntentsDemo/Commands/StdioCommand.swift +++ b/Demos/SwiftMCPIntentsDemo/Commands/StdioCommand.swift @@ -5,9 +5,6 @@ import SwiftMCP import Logging import NIOCore import ServiceLifecycle -#if canImport(OSLog) -import OSLog -#endif /** A command that processes JSON-RPC requests from standard input and writes responses to standard output. diff --git a/Demos/SwiftMCPIntentsDemo/Commands/TCPBonjourCommand.swift b/Demos/SwiftMCPIntentsDemo/Commands/TCPBonjourCommand.swift index e7f7f2e..22cfbe7 100644 --- a/Demos/SwiftMCPIntentsDemo/Commands/TCPBonjourCommand.swift +++ b/Demos/SwiftMCPIntentsDemo/Commands/TCPBonjourCommand.swift @@ -4,9 +4,6 @@ import ArgumentParser import SwiftMCP import Logging import ServiceLifecycle -#if canImport(OSLog) -import OSLog -#endif /** A command that exposes the AppIntents demo server over TCP with Bonjour discovery.