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 0af35f3 commit eb8009eCopy full SHA for eb8009e
common/src/fetcher/mod.rs
@@ -132,6 +132,8 @@ impl Fetcher {
132
) -> Result<D::Type, Error> {
133
let response = self.new_request(Method::GET, url).await?.send().await?;
134
135
+ log::debug!("Response Status: {}", response.status());
136
+
137
Ok(processor.process(response).await?)
138
}
139
csaf/src/metadata/mod.rs
@@ -84,6 +84,10 @@ impl MetadataRetriever {
84
.filter_map(|ext| Url::parse(&ext.value).ok())
85
.find(|url| url.scheme() == "https");
86
87
+ if url.is_none() {
88
+ log::info!("No CSAF information is existing security.txt");
89
+ }
90
91
Ok(url)
92
93
0 commit comments