aboutsummaryrefslogtreecommitdiff
path: root/doh
diff options
context:
space:
mode:
authorMike Yu <yumike@google.com>2023-02-10 06:27:52 +0000
committerMike Yu <yumike@google.com>2023-02-21 07:15:58 +0000
commit87c2e5600037d7932723e6eb589eaa10a92a7352 (patch)
tree793ecd3498da0054ebe7a84143e5014bc18900d5 /doh
parente9ff0021527e0e09a0f5e537a1230038676bc053 (diff)
downloadDnsResolver-87c2e5600037d7932723e6eb589eaa10a92a7352.tar.gz
Make h3::Event::Reset log visible on userdebug builds
This log indicates that DnsResolver just received a RESET_STREAM from DoH server. The error code in RESET_STREAM could be important for debugging. Bug: 264966204 Test: mm Change-Id: I1377af535e4366aa65cc0c595b81b2542f224998
Diffstat (limited to 'doh')
-rw-r--r--doh/connection/driver.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/doh/connection/driver.rs b/doh/connection/driver.rs
index 315fc130..8251bd38 100644
--- a/doh/connection/driver.rs
+++ b/doh/connection/driver.rs
@@ -445,7 +445,7 @@ impl H3Driver {
self.respond(stream_id)
}
h3::Event::Reset(e) => {
- debug!(
+ warn!(
"process_h3_event: h3::Event::Reset with error code {} on stream ID {}, network {}",
e, stream_id, self.driver.net_id
);