From 98c99e983ee93d4c9d344606ec955976d8963f87 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 3 Sep 2014 15:48:01 -0400 Subject: [PATCH] STFU! --- gtk2_ardour/actions.cc | 2 +- gtk2_ardour/mixer_actor.cc | 2 +- gtk2_ardour/theme_manager.cc | 2 +- gtk2_ardour/ui_config.cc | 6 +++--- libs/ardour/midi_patch_manager.cc | 4 ---- libs/ardour/rc_configuration.cc | 4 ++-- libs/ardour/session_state.cc | 2 +- libs/gtkmm2ext/keyboard.cc | 2 +- 8 files changed, 10 insertions(+), 14 deletions(-) diff --git a/gtk2_ardour/actions.cc b/gtk2_ardour/actions.cc index f208c6c8d3..bd9ef3c51d 100644 --- a/gtk2_ardour/actions.cc +++ b/gtk2_ardour/actions.cc @@ -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; diff --git a/gtk2_ardour/mixer_actor.cc b/gtk2_ardour/mixer_actor.cc index ec6f8e40c9..a734fad83b 100644 --- a/gtk2_ardour/mixer_actor.cc +++ b/gtk2_ardour/mixer_actor.cc @@ -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; } diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc index 38f8aac4c9..484a5a8752 100644 --- a/gtk2_ardour/theme_manager.cc +++ b/gtk2_ardour/theme_manager.cc @@ -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); } diff --git a/gtk2_ardour/ui_config.cc b/gtk2_ardour/ui_config.cc index 71e0808c63..c357c72c59 100644 --- a/gtk2_ardour/ui_config.cc +++ b/gtk2_ardour/ui_config.cc @@ -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; diff --git a/libs/ardour/midi_patch_manager.cc b/libs/ardour/midi_patch_manager.cc index 591c0cae40..43f3c58ac6 100644 --- a/libs/ardour/midi_patch_manager.cc +++ b/libs/ardour/midi_patch_manager.cc @@ -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::iterator i = result.begin(); i != result.end(); ++i) { boost::shared_ptr 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::iterator i = result.begin(); i != result.end(); ++i) { boost::shared_ptr document; try { diff --git a/libs/ardour/rc_configuration.cc b/libs/ardour/rc_configuration.cc index b0be237563..0b95f575f6 100644 --- a/libs/ardour/rc_configuration.cc +++ b/libs/ardour/rc_configuration.cc @@ -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)) { diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index dbcbed0a70..18f06243bc 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -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."), diff --git a/libs/gtkmm2ext/keyboard.cc b/libs/gtkmm2ext/keyboard.cc index 48fcae8482..7dd409ca0c 100644 --- a/libs/gtkmm2ext/keyboard.cc +++ b/libs/gtkmm2ext/keyboard.cc @@ -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);