Reduce log level for missing mime applications

This commit is contained in:
Jeremy Soller 2024-03-04 12:24:13 -07:00
parent d7eceaad2e
commit b72de689e2
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -192,7 +192,7 @@ impl MimeAppCache {
{
apps.push(MimeApp::from(app));
} else {
log::warn!("failed to add association for {:?}: application {:?} not found", mime, filename);
log::debug!("failed to add association for {:?}: application {:?} not found", mime, filename);
}
}
}
@ -231,7 +231,7 @@ impl MimeAppCache {
if found {
break;
} else {
log::warn!("failed to set default for {:?}: application {:?} not found", mime, filename);
log::debug!("failed to set default for {:?}: application {:?} not found", mime, filename);
}
}
}