summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Fugal <hans@fugal.net>2006-08-12 23:30:59 +0000
committerHans Fugal <hans@fugal.net>2006-08-12 23:30:59 +0000
commit81bec39eb03d4f86860bf4a8bac3e2dccd3572e6 (patch)
treebb2a26af160b8bfed7bb2ccccdf5e743efb8b05a
parentb13dc9884e926fc96f34334ce2bc9498dccd8178 (diff)
less annoying debug
git-svn-id: svn://localhost/ardour2/trunk@816 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/ardour/session_state.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index aa72637af2..5a75c04b3f 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -3297,7 +3297,7 @@ Session::save_history (string snapshot_name)
}
xml_path = _path + snapshot_name + ".history";
- info << "Saving history to " << xml_path << endmsg;
+ cerr << "Saving history to " << xml_path << endmsg;
bak_path = xml_path + ".bak";
@@ -3340,7 +3340,7 @@ Session::restore_history (string snapshot_name)
/* read xml */
xmlpath = _path + snapshot_name + ".history";
- info << string_compose(_("Loading history from '%1'."), xmlpath) << endmsg;
+ cerr << string_compose(_("Loading history from '%1'."), xmlpath) << endmsg;
if (access (xmlpath.c_str(), F_OK)) {
error << string_compose(_("%1: session history file \"%2\" doesn't exist!"), _name, xmlpath) << endmsg;