From 590f1d2b25c00fc7bea85cb5de1a4f667ea86af1 Mon Sep 17 00:00:00 2001
From: Fabio Comuni <fabrix.xm@gmail.com>
Date: Thu, 17 Nov 2011 16:18:59 +0100
Subject: [PATCH] log less in expire items

---
 include/items.php | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/include/items.php b/include/items.php
index 8c9a714cd5..a008e4ac87 100644
--- a/include/items.php
+++ b/include/items.php
@@ -2733,15 +2733,12 @@ function item_expire($uid,$days) {
 	$expire_photos = get_pconfig($uid, 'expire','photos');
 	$expire_photos = (($expire_photos===false)?0:intval($expire_photos)); // default if not set: 0
  
-	logger('expire: # items=' . count($r) );
-	logger("expire: items: $expire_items, notes: $expire_notes, photos: $expire_photos");
+	logger('expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire photos: $expire_photos");
 
 	foreach($r as $item) {
 
 		// Only expire posts, not photos and photo comments
 
-		logger('expire: item '.$item['type'].' id '.intval($item['id']).' "'.$item['body'].'" '.$item['resource-id']);
-
 		if($expire_photos==0 && strlen($item['resource-id']))
 			continue;
 		if($expire_notes==0 && $item['type']=='note')
@@ -2749,8 +2746,6 @@ function item_expire($uid,$days) {
 		if($expire_items==0 && $item['type']!='note')
 			continue;
 
-		logger('expire');
-
 		$r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
 			dbesc(datetime_convert()),
 			dbesc(datetime_convert()),