diff --git a/src/HTTPurple/Server.purs b/src/HTTPurple/Server.purs index 05fb2aa..c5bc262 100644 --- a/src/HTTPurple/Server.purs +++ b/src/HTTPurple/Server.purs @@ -150,7 +150,7 @@ serve inputOptions { route, router } = do case filledOptions.closingHandler of Just NoClosingHandler -> pure closingHandler _ -> do - onSignal SIGINT $ closingHandler $ log "Ok, ok, stopping the service now. Goodbye!" + onSignal SIGINT $ closingHandler $ log "Aye, stopping service now. Goodbye!" onSignal SIGTERM $ closingHandler $ log "Arrgghh I got stabbed in the back 🗡 ... good...bye..." pure closingHandler