aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorUlrich Spörlein <uqs@spoerlein.net>2010-04-19 23:06:00 +0200
committerTorgny Nyblom <kde@nyblom.org>2010-04-29 20:40:07 +0200
commitc0fa5feaf084d4e1674b966ef9b7524bc2fe1ee8 (patch)
tree6b62d7059c0d629a792466e435eb07e37bafdef6 /src
parentad10c53d123ebf1c7a1d93431ade2a1cde4715ce (diff)
downloadsvn2git-c0fa5feaf084d4e1674b966ef9b7524bc2fe1ee8.tar
svn2git-c0fa5feaf084d4e1674b966ef9b7524bc2fe1ee8.tar.gz
svn2git-c0fa5feaf084d4e1674b966ef9b7524bc2fe1ee8.tar.bz2
svn2git-c0fa5feaf084d4e1674b966ef9b7524bc2fe1ee8.tar.xz
svn2git-c0fa5feaf084d4e1674b966ef9b7524bc2fe1ee8.zip
Print more info on what is exported where
Diffstat (limited to 'src')
-rw-r--r--src/repository.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/repository.cpp b/src/repository.cpp
index 922027d..f7f7a30 100644
--- a/src/repository.cpp
+++ b/src/repository.cpp
@@ -376,9 +376,9 @@ void Repository::Transaction::commit()
QByteArray::number(repository->commitCount) +
" branch " + branch +
" = SVN r" + QByteArray::number(revnum) + "\n\n");
- printf(" %d modifications to \"%s\"",
- deletedFiles.count() + modifiedFiles.count(),
- qPrintable(repository->name));
+ printf(" %d modifications from SVN %s to %s/%s",
+ deletedFiles.count() + modifiedFiles.count(), svnprefix.data(),
+ qPrintable(repository->name), branch.data());
while (repository->fastImport.bytesToWrite())
if (!repository->fastImport.waitForBytesWritten(-1))