aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/svn.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svn.cpp b/src/svn.cpp
index cfa137e..58d632b 100644
--- a/src/svn.cpp
+++ b/src/svn.cpp
@@ -718,20 +718,20 @@ int SvnRevision::exportInternal(const char *key, const svn_fs_path_change_t *cha
if (change->change_kind == svn_fs_path_change_replace && path_from == NULL) {
if(ruledebug)
- qDebug() << "replaced with empty path";
+ qDebug() << "replaced with empty path (" << branch << path << ")";
txn->deleteFile(path);
}
if (change->change_kind == svn_fs_path_change_delete) {
if(ruledebug)
- qDebug() << "delete";
+ qDebug() << "delete (" << branch << path << ")";
txn->deleteFile(path);
} else if (!current.endsWith('/')) {
if(ruledebug)
- qDebug() << "add/change file (" << key << "->" << path << ")";
+ qDebug() << "add/change file (" << key << "->" << branch << path << ")";
dumpBlob(txn, fs_root, key, path, pool);
} else {
if(ruledebug)
- qDebug() << "add/change dir (" << key << "->" << path << ")";
+ qDebug() << "add/change dir (" << key << "->" << branch << path << ")";
txn->deleteFile(path);
recursiveDumpDir(txn, fs_root, key, path, pool);
}