mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-16 20:50:25 +00:00
With the last lychee release, we simplified the status output for links. While this reduced the visual noise, it also accidentally caused the source of errors to not be printed anymore. This change brings back the additional error information as part of the final report output. Furthermore, it shows the error information in the progress output if verbose mode is activated. Fixes #1487
27 lines
617 B
HTML
Vendored
27 lines
617 B
HTML
Vendored
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Invalid URLs</title>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li>
|
|
<a href="https://httpbin.org/status/404"
|
|
>https://httpbin.org/status/404</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a href="https://httpbin.org/status/500"
|
|
>https://httpbin.org/status/500</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a href="https://httpbin.org/status/502"
|
|
>https://httpbin.org/status/502</a
|
|
>
|
|
</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|