Skip to content

Commit

Permalink
SRE-62 Remove print command (only for dev envs)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitris Spachos committed Oct 12, 2020
1 parent e572fb3 commit 5965da5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Audit/BrokenLinksSitemap.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public function audit(Sandbox $sandbox) {
$time_start = microtime(true);
foreach ($items as $item) {
$s = $this->checkUrl($item['loc']);
print $item['loc'] . ' => ' . $s . PHP_EOL;
if ($s !== 200) {
$broken_links[] = [ 'uri' => $item['loc'], 'status' => $s];
}
Expand Down

0 comments on commit 5965da5

Please sign in to comment.