change input/output button context menus for mixer strip to be non-additive: when...
[ardour.git] / libs / ardour / ardour / midi_patch_manager.h
index 13c034fbc6912cde2cf7a3996538fa17bff94ab9..32b3ebc61de6edf885a85f6b4186f98347e4126a 100644 (file)
@@ -74,7 +74,6 @@ public:
                if (master_device != 0 && custom_device_mode != "") {
                        return master_device->channel_name_set_by_device_mode_and_channel(custom_device_mode, channel);
                } else {
-                       std::cerr << "No MD for " << model << " + " << custom_device_mode << std::endl;
                        return boost::shared_ptr<ChannelNameSet>();
                }
        }
@@ -88,10 +87,8 @@ public:
                boost::shared_ptr<ChannelNameSet> channel_name_set = find_channel_name_set(model, custom_device_mode, channel);
 
                if (channel_name_set) {
-                       std::cerr << "found CNS for " << model << " + " << custom_device_mode << std::endl;
                        return  channel_name_set->find_patch(patch_key);
                } else {
-                       std::cerr << "no CNS for " << model << " + " << custom_device_mode << std::endl;
                        return boost::shared_ptr<Patch>();
                }
        }