Index: trunk/extensions/CodeReview/svnImport.php |
— | — | @@ -56,6 +56,7 @@ |
57 | 57 | */ |
58 | 58 | private function importRepo( $repoName, $start = null, $cacheSize = 0 ) { |
59 | 59 | global $wgCodeReviewImportBatchSize; |
| 60 | + static $adaptorReported = false; |
60 | 61 | |
61 | 62 | $repo = CodeRepository::newFromName( $repoName ); |
62 | 63 | |
— | — | @@ -65,7 +66,12 @@ |
66 | 67 | } |
67 | 68 | |
68 | 69 | $svn = SubversionAdaptor::newFromRepo( $repo->getPath() ); |
69 | | - $this->output( "Using " . get_class($svn). " adaptor\n" ); |
| 70 | + if ( !$adaptorReported ) { |
| 71 | + $this->output( "Using " . get_class($svn). " adaptor\n" ); |
| 72 | + $adaptorReported = true; |
| 73 | + } |
| 74 | + |
| 75 | + $this->output( "IMPORT FROM REPO: $repoName\n" ); |
70 | 76 | $lastStoredRev = $repo->getLastStoredRev(); |
71 | 77 | $this->output( "Last stored revision: $lastStoredRev\n" ); |
72 | 78 | |
— | — | @@ -85,7 +91,7 @@ |
86 | 92 | return; |
87 | 93 | } |
88 | 94 | |
89 | | - $this->output( "Syncing repo $repoName from r$start to HEAD...\n" ); |
| 95 | + $this->output( "Syncing from r$start to HEAD...\n" ); |
90 | 96 | |
91 | 97 | if ( !$svn->canConnect() ) { |
92 | 98 | $this->error( "Unable to connect to repository." ); |