remove some debug output associated with loading region UI settings

This commit is contained in:
Paul Davis
2025-12-01 17:54:30 -07:00
parent 7635707ac2
commit 36d6200631

View File

@@ -171,15 +171,12 @@ RegionUISettingsManager::load (std::string const & xmlpath)
}
if (!state_tree.read (xmlpath)) {
std::cerr << "bad xmlpath " << xmlpath << std::endl;
return -1;
}
std::cerr << "loading " << xmlpath << std::endl;
XMLNode const & root (*state_tree.root());
if (root.name() != X_("RegionUISettings")) {
std::cerr << "bad root\n";
return -1;
}
@@ -188,8 +185,6 @@ RegionUISettingsManager::load (std::string const & xmlpath)
PBD::ID id;
node->get_property ("id", id);
std::cerr << "loaded RSU for " << id << std::endl;
if (rsu.set_state (*node, 0) == 0) {
insert (std::make_pair (id, rsu));
}