This commit is contained in:
Paul Davis 2014-09-03 15:48:01 -04:00
parent 78f0a0ba97
commit 98c99e983e
8 changed files with 10 additions and 14 deletions

View file

@ -81,7 +81,7 @@ ActionManager::load_menus (const string& menus_file)
try {
ui_manager->add_ui_from_file (ui_file);
info << string_compose (_("Loading menus from %1"), ui_file) << endmsg;
// info << string_compose (_("Loading menus from %1"), ui_file) << endmsg;
loaded = true;
} catch (Glib::MarkupError& err) {
error << string_compose (_("badly formatted menu definition file: %1"), err.what()) << endmsg;

View file

@ -87,7 +87,7 @@ MixerActor::load_bindings ()
if (find_file (ardour_config_search_path(), "mixer.bindings", binding_file)) {
bindings.load (binding_file);
info << string_compose (_("Loaded mixer bindings from %1"), binding_file) << endmsg;
// info << string_compose (_("Loaded mixer bindings from %1"), binding_file) << endmsg;
} else {
error << string_compose (_("Could not find mixer.bindings in search path %1"), ardour_config_search_path().to_string()) << endmsg;
}

View file

@ -285,7 +285,7 @@ load_rc_file (const string& filename, bool themechange)
return;
}
info << "Loading ui configuration file " << rc_file_path << endmsg;
// info << "Loading ui configuration file " << rc_file_path << endmsg;
Gtkmm2ext::UI::instance()->load_rcfile (rc_file_path, themechange);
}

View file

@ -92,7 +92,7 @@ UIConfiguration::load_defaults ()
string rcfile = default_ui_rc_file;
info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl;
// info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl;
if (!tree.read (rcfile.c_str())) {
error << string_compose(_("cannot read default ui configuration file \"%1\""), rcfile) << endmsg;
@ -123,7 +123,7 @@ UIConfiguration::load_state ()
string rcfile = default_ui_rc_file;
info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl;
// info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl;
if (!tree.read (rcfile.c_str())) {
error << string_compose(_("cannot read default ui configuration file \"%1\""), rcfile) << endmsg;
@ -144,7 +144,7 @@ UIConfiguration::load_state ()
string rcfile = user_ui_rc_file;
info << string_compose (_("Loading user ui configuration file %1"), rcfile) << endmsg;
// info << string_compose (_("Loading user ui configuration file %1"), rcfile) << endmsg;
if (!tree.read (rcfile)) {
error << string_compose(_("cannot read ui configuration file \"%1\""), rcfile) << endmsg;

View file

@ -72,8 +72,6 @@ MidiPatchManager::add_session_patches ()
find_files_matching_pattern (result, path_to_patches, "*.midnam");
info << "Loading " << result.size() << " MIDI patches from " << path_to_patches << endmsg;
for (vector<std::string>::iterator i = result.begin(); i != result.end(); ++i) {
boost::shared_ptr<MIDINameDocument> document(new MIDINameDocument(*i));
for (MIDINameDocument::MasterDeviceNamesList::const_iterator device =
@ -107,8 +105,6 @@ MidiPatchManager::refresh()
find_files_matching_pattern (result, search_path, "*.midnam");
info << "Loading " << result.size() << " MIDI patches from " << search_path.to_string() << endmsg;
for (vector<std::string>::iterator i = result.begin(); i != result.end(); ++i) {
boost::shared_ptr<MIDINameDocument> document;
try {

View file

@ -85,7 +85,7 @@ RCConfiguration::load_state ()
}
if (statbuf.st_size != 0) {
info << string_compose (_("Loading system configuration file %1"), rcfile) << endl;
// info << string_compose (_("Loading system configuration file %1"), rcfile) << endl;
XMLTree tree;
if (!tree.read (rcfile.c_str())) {
@ -113,7 +113,7 @@ RCConfiguration::load_state ()
}
if (statbuf.st_size != 0) {
info << string_compose (_("Loading user configuration file %1"), rcfile) << endl;
// info << string_compose (_("Loading user configuration file %1"), rcfile) << endl;
XMLTree tree;
if (!tree.read (rcfile)) {

View file

@ -3255,7 +3255,7 @@ Session::restore_history (string snapshot_name)
const std::string xml_filename = legalize_for_path (snapshot_name) + history_suffix;
const std::string xml_path(Glib::build_filename (_session_dir->root_path(), xml_filename));
info << "Loading history from " << xml_path << endmsg;
// info << "Loading history from " << xml_path << endmsg;
if (!Glib::file_test (xml_path, Glib::FILE_TEST_EXISTS)) {
info << string_compose (_("%1: no history file \"%2\" for this session."),

View file

@ -533,7 +533,7 @@ bool
Keyboard::load_keybindings (string path)
{
try {
info << "Loading bindings from " << path << endl;
// info << "Loading bindings from " << path << endl;
Gtk::AccelMap::load (path);