diff options
author | Matthias Urlichs <smurf@smurf.noris.de> | 2005-10-10 14:19:15 +0200 |
---|---|---|
committer | Matthias Urlichs <smurf@smurf.noris.de> | 2005-10-10 14:19:15 +0200 |
commit | 62d72e4b707d6931787e91f611ed49aaabb14391 (patch) | |
tree | 4fa030442a3c150f3c423a22b0184ab5cce11054 /git-svnimport.perl | |
parent | c7ff5f1d7d6f103802fd6d6b1d4dcdf095e95d5f (diff) | |
download | git-62d72e4b707d6931787e91f611ed49aaabb14391.tar.gz git-62d72e4b707d6931787e91f611ed49aaabb14391.tar.xz |
svn import: remove debugging
Removed debugging output used to identify the too-many-connections problem.
Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
Diffstat (limited to 'git-svnimport.perl')
-rwxr-xr-x | git-svnimport.perl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/git-svnimport.perl b/git-svnimport.perl index 2686f4a63..f7bf616e5 100755 --- a/git-svnimport.perl +++ b/git-svnimport.perl @@ -110,7 +110,6 @@ sub conn { die "SVN connection to $repo: $!\n" unless defined $s; $self->{'svn'} = $s; - print STDERR "*** SVN *** $s ***\n"; $self->{'repo'} = $repo; $self->{'maxrev'} = $s->get_latest_revnum(); } @@ -124,7 +123,6 @@ sub file { print "... $rev $path ...\n" if $opt_v; my $s = $self->{'svn'}; - print STDERR "*** GET *** $s ***\n"; eval { $s->get_file($path,$rev,$fh); }; if ($@ and $@ !~ /Attempted to get checksum/) { # retry |