You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if !SHOWN_GENERIC_404_WARNING.fetch_or(true,Ordering::Relaxed)
329
+
&& std::io::stderr().is_terminal()
330
+
{
331
+
terminal::warn!("Request to {route} matched no pattern, and received a generic 404 response. To serve a more informative 404 page, add a catch-all (/...) route.");
332
+
}
333
+
}
324
334
Ok(Response::builder()
325
335
.status(StatusCode::NOT_FOUND)
326
336
.body(body::empty())?)
@@ -680,6 +690,12 @@ impl OutboundWasiHttpHandler for HttpRuntimeData {
0 commit comments