From 4fcb57b704c3754cdd67028220457bb27d6ab128 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Tue, 8 Mar 2022 15:24:14 -0800 Subject: [PATCH] Log HTTP/2 availability at start-up. --- core/lib/src/config/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lib/src/config/config.rs b/core/lib/src/config/config.rs index bc386d17..43e2f148 100644 --- a/core/lib/src/config/config.rs +++ b/core/lib/src/config/config.rs @@ -358,6 +358,7 @@ impl Config { launch_info_!("ident: {}", bold(&self.ident)); launch_info_!("limits: {}", bold(&self.limits)); launch_info_!("temp dir: {}", bold(&self.temp_dir.relative().display())); + launch_info_!("http/2: {}", bold(cfg!(feature = "http2"))); match self.keep_alive { 0 => launch_info_!("keep-alive: {}", bold("disabled")),