]> source.dussan.org Git - nextcloud-server.git/commitdiff
Removed stray debug log write
authorVincent Petry <pvince81@owncloud.com>
Wed, 2 Oct 2013 14:44:38 +0000 (16:44 +0200)
committerVincent Petry <pvince81@owncloud.com>
Wed, 2 Oct 2013 14:44:38 +0000 (16:44 +0200)
lib/private/template/functions.php

index f0fd9999d9da14bcd31bef37ace64c270c31deb6..6002113bdd998a3a1bd5feec41b2738d52501099 100644 (file)
@@ -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); }