From 1638aef84c8b12873672c241fd2d2b8d50b3e260 Mon Sep 17 00:00:00 2001 From: Torgny Nyblom Date: Wed, 8 Sep 2010 21:36:45 +0200 Subject: More verbose debug output --- src/svn.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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); } -- cgit v1.2.1