From 6f955235ea368123bc1e78eb1969b074a8272366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Wed, 12 Aug 2020 04:38:47 +0200 Subject: [PATCH] aquatic http: log at debug level for unrecognized keys in request parse "downloaded" and "uploaded" occur all the time since they are part of the specification --- aquatic_http_protocol/src/request.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquatic_http_protocol/src/request.rs b/aquatic_http_protocol/src/request.rs index 78c99e7..5fde02a 100644 --- a/aquatic_http_protocol/src/request.rs +++ b/aquatic_http_protocol/src/request.rs @@ -223,7 +223,7 @@ impl Request { opt_key = Some(::urlencoding::decode(value)?.into()); }, k => { - ::log::info!("ignored unrecognized key: {}", k) + ::log::debug!("ignored unrecognized key: {}", k) } }