We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e4016d commit 4ab9153Copy full SHA for 4ab9153
scripts/get-url-status.mjs
@@ -35,8 +35,10 @@ async function getUrlHeadless(url) {
35
// Crate found iff title is `${crateName} - crates.io: Rust Package Registry`
36
if (!title.startsWith(crateName)) status = 404;
37
}
38
-
39
- log(`Headless fetch returned HTTP status code: ${status}; page title: '${title}'`);
+
+ log(
40
+ `Headless fetch returned HTTP status code: ${status}; page title: '${title}'`,
41
+ );
42
43
return status;
44
} catch (error) {
0 commit comments