--- contribs/weblinks_checker/weblinks_checker.module 2009-08-28 07:25:49.000000000 +0100 +++ contribs/weblinks_checker/weblinks_checker.module 2009-08-28 20:30:11.000000000 +0100 @@ -323,7 +323,6 @@ function weblinks_checker_cron() { if (!$ignore[$status]) { $errors_found++; $extra = $response->error; - watchdog('Weblinks', '@url reports @status @extra.', array('@url' => check_plain($url), '@status' => $status, '@extra' => $extra)); if ($last_status != $status) { if ($detail_log != 0) { // The http status has changed and the 'none' reporting option is not selected, so report it to the log. @@ -352,7 +351,6 @@ function weblinks_checker_cron() { if ($status == '301' && $redir_update) { // Update the link because of redirect. $newurl = substr($response->redirect_url, 0, 1) == '/' ? $url . $response->redirect_url : $response->redirect_url; - watchdog('Weblinks', '@url updated to @new.', array('@url' => check_plain($url), '@new' => $newurl)); watchdog('Weblinks', '@title @url returned 301, updated to @new', array('@title' => $link->title, '@url' => $url, '@new' => $newurl)); $status = '200'; $last_status_info = 0;