From e68de35d3eb1165c8a0261e5b54cb465d8f1272e Mon Sep 17 00:00:00 2001 From: Wesley Beary Date: Thu, 11 Jul 2024 09:32:50 -0500 Subject: [PATCH] simplify listening output and make more similar to http messages (#11) --- lib/puma/acme/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puma/acme/plugin.rb b/lib/puma/acme/plugin.rb index 86c581e..c0c2642 100644 --- a/lib/puma/acme/plugin.rb +++ b/lib/puma/acme/plugin.rb @@ -109,7 +109,7 @@ def bind_to(launcher, cert) end cert.identifiers.each do |identifier| - @logger.log "* Listening on ssl://#{uri.host}:#{uri.port} for https://#{identifier.value}:#{uri.port} (puma-acme)" + @logger.log "* Listening on https://#{identifier.value}:#{uri.port} (puma-acme)" end launcher.binder.listeners << [str, io]