From 94f7debb520e260958a51e3312101ae621151431 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 7 Oct 2016 11:08:36 +0000 Subject: [PATCH] Loglines removed --- include/threads.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/threads.php b/include/threads.php index e9002fe66..2e02e7ada 100644 --- a/include/threads.php +++ b/include/threads.php @@ -135,9 +135,7 @@ function update_thread($itemid, $setmention = false) { $sql .= "`".$field."` = '".dbesc($data)."'"; } - logger("Pre Update Thread", LOGGER_DEBUG); $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid)); - logger("Post Update Thread", LOGGER_DEBUG); logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG); @@ -147,7 +145,6 @@ function update_thread($itemid, $setmention = false) { if (!$items) return; - logger("Pre Update Item", LOGGER_DEBUG); $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d", dbesc($item["title"]), dbesc($item["body"]), @@ -155,7 +152,6 @@ function update_thread($itemid, $setmention = false) { dbesc($item["rendered-hash"]), intval($items[0]["id"]) ); - logger("Post Update Item", LOGGER_DEBUG); logger("Updating public shadow for post ".$items[0]["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG); }