From: Vincent Petry Date: Wed, 2 Oct 2013 14:44:38 +0000 (+0200) Subject: Removed stray debug log write X-Git-Tag: v6.0.0alpha2~97^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ed14541aea648605536c8180ab56f511013bce38;p=nextcloud-server.git Removed stray debug log write --- diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index f0fd9999d9d..6002113bdd9 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -115,7 +115,6 @@ function relative_modified_date($timestamp, $dateOnly = false) { $diffhours = round($diffminutes/60); $diffdays = round($diffhours/24); $diffmonths = round($diffdays/31); - \OC_Log::write('functions', '################ ' . $timediff . ' ' . $diffhours, \OC_Log::DEBUG); if(!$dateOnly && $timediff < 60) { return $l->t('seconds ago'); } else if(!$dateOnly && $timediff < 3600) { return $l->n('%n minute ago', '%n minutes ago', $diffminutes); }