chore(default-apps): remove eprintln log

This commit is contained in:
Michael Aaron Murphy 2024-12-12 14:33:46 +01:00
parent 2247b3cfdf
commit 4ad35b70a6
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -393,7 +393,6 @@ async fn load_defaults(assocs: &BTreeMap<Arc<str>, Arc<App>>, for_mimes: &[&str]
for (id, (appid, app)) in unsorted.iter().enumerate() {
if let Some(current_app) = current_app {
if app.name.as_ref() == current_app.name.as_ref() {
eprintln!("selected = {}; current = {}", app.name, current_app.name);
selected = Some(id);
}
}