delete error log line

This commit is contained in:
David Kocik 2025-02-05 14:09:14 +01:00
parent c438e564c0
commit 9ba6541a89

View File

@ -289,7 +289,6 @@ bool UserAccount::on_connect_uiid_map_success(const std::string& data, AppConfig
const PresetWithVendorProfile& printer_with_vendor = wxGetApp().preset_bundle->printers.get_preset_with_vendor_profile(*printer_preset); const PresetWithVendorProfile& printer_with_vendor = wxGetApp().preset_bundle->printers.get_preset_with_vendor_profile(*printer_preset);
trimmed_name = printer_preset->trim_vendor_repo_prefix(trimmed_name, printer_with_vendor.vendor); trimmed_name = printer_preset->trim_vendor_repo_prefix(trimmed_name, printer_with_vendor.vendor);
m_printer_uuid_map[*printer_uuid] = trimmed_name; m_printer_uuid_map[*printer_uuid] = trimmed_name;
BOOST_LOG_TRIVIAL(error) << trimmed_name << " " << *printer_uuid;
} else { } else {
BOOST_LOG_TRIVIAL(error) << "Failed to find preset for printer model: " << *printer_model; BOOST_LOG_TRIVIAL(error) << "Failed to find preset for printer model: " << *printer_model;
} }