From 3918a31fc2a6677a420e8ba5cc09d22f22b40518 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 27 Jun 2018 20:08:02 +0000 Subject: [PATCH] Remove unneeded logging --- src/Worker/OnePoll.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index f3784d3ffa..423ce17414 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -442,10 +442,7 @@ class OnePoll $condition = ['uri' => $refs_arr, 'uid' => $importer_uid]; $parent = Item::selectFirst(['parent-uri'], $condition); if (DBM::is_result($parent)) { - logger('Parent found with matching uri. ' . json_encode($refs_arr), LOGGER_DEBUG); $datarray['parent-uri'] = $parent['parent-uri']; // Set the parent as the top-level item - } else { - logger('No parent found with matching uri. ' . json_encode($refs_arr), LOGGER_DEBUG); } } @@ -478,10 +475,7 @@ class OnePoll $params = ['order' => ['created' => true]]; $parent = Item::selectFirst(['parent-uri'], $condition, $params); if (DBM::is_result($parent)) { - logger('Parent found with matching title. ' . $datarray['title'], LOGGER_DEBUG); $datarray['parent-uri'] = $parent['parent-uri']; - } else { - logger('No parent found with matching title. ' . $datarray['title'], LOGGER_DEBUG); } }