diff --git a/acrate-nodeinfo/src/lib.rs b/acrate-nodeinfo/src/lib.rs index 51e7b88..e11d61f 100644 --- a/acrate-nodeinfo/src/lib.rs +++ b/acrate-nodeinfo/src/lib.rs @@ -139,8 +139,9 @@ impl HostMetaDocument { let mime_type = extract_mime_from_content_type(content_type) .ok_or(ContentTypeInvalid)?; - log::trace!("Ensuring MIME type of `{mime_type}` is acceptable for JRD parsing..."); + log::trace!("Ensuring MIME type is acceptable for XRD parsing..."); if mime_type != "application/xrd+xml" { + log::error!("MIME type `{mime_type}` is not acceptable for XRD parsing."); return Err(ContentTypeInvalid) }