From a2d9e14f3a5b7c3deeffed2fbe48cef332e2c133 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Mon, 1 May 2023 18:28:15 -0700 Subject: [PATCH] Print message on RPC startup. --- Sources/StableDiffusionServer/main.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/StableDiffusionServer/main.swift b/Sources/StableDiffusionServer/main.swift index 53e9a3b..d9392ee 100644 --- a/Sources/StableDiffusionServer/main.swift +++ b/Sources/StableDiffusionServer/main.swift @@ -39,6 +39,8 @@ struct ServerCommand: ParsableCommand { ]) .bind(host: bindHost, port: bindPort) + print("Stable Diffusion RPC running on \(bindHost):\(bindPort)") + dispatchMain() } }