diff options
author | Torgny Nyblom <kde@nyblom.org> | 2010-11-01 10:40:45 +0100 |
---|---|---|
committer | Torgny Nyblom <kde@nyblom.org> | 2010-11-01 10:40:45 +0100 |
commit | 4fee08de4fa1e3592a4d9ee5c8a0835ddf97ebab (patch) | |
tree | 65023b927b157e2731cf93e09e9a62824c733f63 /src | |
parent | 222a48f0179bcebf63fdc3e8c5600b2ad44dd099 (diff) | |
download | svn2git-4fee08de4fa1e3592a4d9ee5c8a0835ddf97ebab.tar svn2git-4fee08de4fa1e3592a4d9ee5c8a0835ddf97ebab.tar.gz svn2git-4fee08de4fa1e3592a4d9ee5c8a0835ddf97ebab.tar.bz2 svn2git-4fee08de4fa1e3592a4d9ee5c8a0835ddf97ebab.tar.xz svn2git-4fee08de4fa1e3592a4d9ee5c8a0835ddf97ebab.zip |
Print the missing from path when warning about missing source
Diffstat (limited to 'src')
-rw-r--r-- | src/svn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svn.cpp b/src/svn.cpp index 28d6396..f56d5ad 100644 --- a/src/svn.cpp +++ b/src/svn.cpp @@ -668,7 +668,7 @@ int SvnRevision::exportInternal(const char *key, const svn_fs_path_change_t *cha splitPathName(*prevmatch, previous, &prevsvnprefix, &prevrepository, &prevbranch, &prevpath); } else { - qWarning() << "SVN reports a \"copy from\" but no matching rules found! Ignoring copy, treating as a modification"; + qWarning() << "SVN reports a \"copy from\" from" << path_from << "but no matching rules found! Ignoring copy, treating as a modification"; path_from = NULL; } } |