summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-22 20:05:40 +0000
committerDavid Robillard <d@drobilla.net>2009-10-22 20:05:40 +0000
commitf820456bb7615414b86851a8094e30f5d4c2c9a6 (patch)
treed5a3e766cdd0c815f18e32c3e464cf7f0d33081a /libs/ardour
parent7919491f277653c85bc63a036bb307ab09407604 (diff)
Use info stream for infoey things.
git-svn-id: svn://localhost/ardour2/branches/3.0@5866 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/midi_patch_manager.cc2
-rw-r--r--libs/ardour/rc_configuration.cc4
-rw-r--r--libs/ardour/session.cc4
-rw-r--r--libs/ardour/session_state.cc2
4 files changed, 6 insertions, 6 deletions
diff --git a/libs/ardour/midi_patch_manager.cc b/libs/ardour/midi_patch_manager.cc
index a0ccbdec9e..f523ab056f 100644
--- a/libs/ardour/midi_patch_manager.cc
+++ b/libs/ardour/midi_patch_manager.cc
@@ -70,7 +70,7 @@ MidiPatchManager::refresh()
find_matching_files_in_directory(path_to_patches, pattern, result);
- cerr << "Loading " << result.size() << " MIDI patches from " << path_to_patches.to_string() << endl;
+ info << "Loading " << result.size() << " MIDI patches from " << path_to_patches.to_string() << endl;
for (vector<path>::iterator i = result.begin(); i != result.end(); ++i) {
boost::shared_ptr<MIDINameDocument> document(new MIDINameDocument(i->to_string()));
diff --git a/libs/ardour/rc_configuration.cc b/libs/ardour/rc_configuration.cc
index c7d39c5b99..f04c148ab7 100644
--- a/libs/ardour/rc_configuration.cc
+++ b/libs/ardour/rc_configuration.cc
@@ -90,7 +90,7 @@ RCConfiguration::load_state ()
}
if (statbuf.st_size != 0) {
- cerr << string_compose (_("Loading system configuration file %1"), rcfile) << endl;
+ info << string_compose (_("Loading system configuration file %1"), rcfile) << endl;
if (!tree.read (rcfile.c_str())) {
error << string_compose(_("Ardour: cannot read system configuration file \"%1\""), rcfile) << endmsg;
@@ -125,7 +125,7 @@ RCConfiguration::load_state ()
}
if (statbuf.st_size != 0) {
- cerr << string_compose (_("Loading user configuration file %1"), rcfile) << endl;
+ info << string_compose (_("Loading user configuration file %1"), rcfile) << endl;
if (!tree.read (rcfile)) {
error << string_compose(_("Ardour: cannot read configuration file \"%1\""), rcfile) << endmsg;
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 641155869d..7fff21492a 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -156,7 +156,7 @@ Session::Session (AudioEngine &eng,
throw failed_constructor();
}
- cerr << "Loading session " << fullpath << " using snapshot " << snapshot_name << " (1)" << endl;
+ info << "Loading session " << fullpath << " using snapshot " << snapshot_name << " (1)" << endl;
n_physical_outputs = _engine.n_physical_outputs(DataType::AUDIO);
n_physical_inputs = _engine.n_physical_inputs(DataType::AUDIO);
@@ -242,7 +242,7 @@ Session::Session (AudioEngine &eng,
throw failed_constructor();
}
- cerr << "Loading session " << fullpath << " using snapshot " << snapshot_name << " (2)" << endl;
+ info << "Loading session " << fullpath << " using snapshot " << snapshot_name << " (2)" << endl;
n_physical_outputs = _engine.n_physical_outputs (DataType::AUDIO);
n_physical_inputs = _engine.n_physical_inputs (DataType::AUDIO);
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 8034e2c35f..a192013717 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -2936,7 +2936,7 @@ Session::restore_history (string snapshot_name)
const string xml_filename = legalize_for_path (snapshot_name) + history_suffix;
const sys::path xml_path = _session_dir->root_path() / xml_filename;
- cerr << "Loading history from " << xml_path.to_string() << endmsg;
+ info << "Loading history from " << xml_path.to_string() << endmsg;
if (!sys::exists (xml_path)) {
info << string_compose (_("%1: no history file \"%2\" for this session."),