summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-05-27 10:57:40 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-05-27 10:57:40 -0400
commit7f902ae1b6e40ddaeab1c7e13095acc16bfa6883 (patch)
tree7cb5a8b24b6a052290286cb8a70af30faeb0b8e6 /libs
parent5e1ba50731ab2ce19fec1eed2ea8386e4c60ee18 (diff)
some more information output to log during save-as, for debugging
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session_state.cc14
1 files changed, 10 insertions, 4 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 6c7e7bff0e..03acb63f0e 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -4101,9 +4101,8 @@ Session::save_as (SaveAs& saveas)
}
try {
- /* copy all media files. Find each location in
- * session_dirs, and copy files from there to
- * target.
+ /* copy all relevant files. Find each location in session_dirs,
+ * and copy files from there to target.
*/
for (vector<space_and_path>::const_iterator sd = session_dirs.begin(); sd != session_dirs.end(); ++sd) {
@@ -4134,10 +4133,12 @@ Session::save_as (SaveAs& saveas)
/* media file */
- if (saveas.copy_media) {
+ if (saveas.include_media && saveas.copy_media) {
string to = make_new_media_path (*i, to_dir, new_folder);
+ info << "media file copying from " << from << " to " << to << endmsg;
+
if (!copy_file (from, to)) {
throw Glib::FileError (Glib::FileError::IO_ERROR, "copy failed");
}
@@ -4165,9 +4166,13 @@ Session::save_as (SaveAs& saveas)
if (do_copy) {
string to = Glib::build_filename (to_dir, (*i).substr (prefix_len));
+ info << "attempting to make directory/folder " << to << endmsg;
+
if (g_mkdir_with_parents (Glib::path_get_dirname (to).c_str(), 0755)) {
throw Glib::FileError (Glib::FileError::IO_ERROR, "cannot create required directory");
}
+
+ info << "attempting to copy " << from << " to " << to << endmsg;
if (!copy_file (from, to)) {
throw Glib::FileError (Glib::FileError::IO_ERROR, "copy failed");
@@ -4253,6 +4258,7 @@ Session::save_as (SaveAs& saveas)
if (internal_file_cnt) {
for (vector<string>::iterator s = old_search_path[DataType::AUDIO].begin(); s != old_search_path[DataType::AUDIO].end(); ++s) {
ensure_search_path_includes (*s, DataType::AUDIO);
+ cerr << "be sure to include " << *s << " for audio" << endl;
}
for (vector<string>::iterator s = old_search_path[DataType::MIDI].begin(); s != old_search_path[DataType::MIDI].end(); ++s) {