summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/startup.cc1
-rw-r--r--libs/ardour/session.cc2
2 files changed, 0 insertions, 3 deletions
diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc
index acd26fcaaf..b46a4169b1 100644
--- a/gtk2_ardour/startup.cc
+++ b/gtk2_ardour/startup.cc
@@ -305,7 +305,6 @@ ArdourStartup::session_folder ()
if (ic_new_session_button.get_active()) {
std::string legal_session_folder_name = legalize_for_path (new_name_entry.get_text());
- cerr << "using NFC @ " << &new_folder_chooser << ' ' << new_folder_chooser.get_current_folder() << " file " << new_folder_chooser.get_filename() << endl;
return Glib::build_filename (new_folder_chooser.get_current_folder(), legal_session_folder_name);
} else if (_existing_session_chooser_used) {
/* existing session chosen from file chooser */
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 0bcabbe7bd..3a2f035e73 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -1634,8 +1634,6 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, boost:
RouteList new_routes;
list<boost::shared_ptr<MidiTrack> > ret;
- cerr << "Adding MIDI track with in = " << input << " out = " << output << endl;
-
bool const use_number = (how_many != 1) || name_template.empty () || name_template == _("MIDI");
while (how_many) {