We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d538b80 commit 23cb749Copy full SHA for 23cb749
src/tools/rustbook/src/main.rs
@@ -115,6 +115,8 @@ pub fn linkcheck(
115
eprintln!("Timeout for link `{}`", link.link.uri);
116
} else if err.is_server_error() {
117
eprintln!("Server error for link `{}`", link.link.uri);
118
+ } else if !err.is_http() {
119
+ eprintln!("Non-HTTP-related error for link: {} {}", link.link.uri, err);
120
} else {
121
is_real_error = true;
122
}
0 commit comments