Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cleanup insert logging
  • Loading branch information
xdg committed Aug 13, 2011
1 parent 4c58c5b commit 7a6fb84
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions lib/PAUSE/mldistwatch.pm
Expand Up @@ -3458,11 +3458,8 @@ filemtime = ?, pause_reg = ? WHERE package = ?};
my $dist = $self->{DIST};
my $pp = $self->{PP};
my $pmfile = $self->{PMFILE};
my $query = qq{INSERT INTO packages
(package, version, dist, file, filemtime, pause_reg)
VALUES (?,?,?,?,?,?)
};
$self->verbose(1,"Inserting package: [$query]$package,$pp->{version},$dist,$pp->{infile},$pp->{filemtime},$self->{TIME}\n");
my $query = qq{INSERT INTO packages (package, version, dist, file, filemtime, pause_reg) VALUES (?,?,?,?,?,?) };
$self->verbose(1,"Inserting package: [$query] $package,$pp->{version},$dist,$pp->{infile},$pp->{filemtime},$self->{TIME}\n");
$dbh->do($query,
undef,
$package,
Expand Down

0 comments on commit 7a6fb84

Please sign in to comment.