Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Feb 29, 2024
1 parent 54a68bf commit 4cf2b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion createdatabase.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2599,7 +2599,7 @@ print __LINE__, ": add_record = $add_record (city/state/country = $city/$state/$
'LON' => $city->{'longitude'},
};
$inserts += import(row => $row, file => $filename, ua => $ua, dbh => $dbh, redis => $redis, mongodb => $mongodb, berkeley_db => $berkeley_db);
print Data::Dumper->new([$row])->Dump();
# print Data::Dumper->new([$row])->Dump();
if($inserts >= MAX_INSERT_COUNT) {
flush_queue($dbh, $redis, $mongodb, $berkeley_db);
$inserts = 0;
Expand Down

0 comments on commit 4cf2b65

Please sign in to comment.