aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorgny Nyblom <kde@nyblom.org>2010-09-08 21:36:45 +0200
committerTorgny Nyblom <kde@nyblom.org>2010-09-08 21:36:45 +0200
commit1638aef84c8b12873672c241fd2d2b8d50b3e260 (patch)
treef7b960b517b6e39575d17492ef33b511a6ebaf93
parentf2fb603396b416e6516970f4ca5286a4f23c36ca (diff)
downloadsvn2git-1638aef84c8b12873672c241fd2d2b8d50b3e260.tar
svn2git-1638aef84c8b12873672c241fd2d2b8d50b3e260.tar.gz
svn2git-1638aef84c8b12873672c241fd2d2b8d50b3e260.tar.bz2
svn2git-1638aef84c8b12873672c241fd2d2b8d50b3e260.tar.xz
svn2git-1638aef84c8b12873672c241fd2d2b8d50b3e260.zip
More verbose debug output
-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);
}