From: Thomas Tanghus Date: Mon, 16 Dec 2013 16:07:22 +0000 (+0100) Subject: Use DEBUG instead of ERROR when favourites not found. Fix #6419 X-Git-Tag: v7.0.0alpha2~1028^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a3fbad43c176e89261bbedcefb261168255df6d1;p=nextcloud-server.git Use DEBUG instead of ERROR when favourites not found. Fix #6419 --- diff --git a/lib/private/tags.php b/lib/private/tags.php index 9fdb35a7d6e..fe7de1073a0 100644 --- a/lib/private/tags.php +++ b/lib/private/tags.php @@ -480,7 +480,7 @@ class Tags implements \OCP\ITags { return $this->getIdsForTag(self::TAG_FAVORITE); } catch(\Exception $e) { \OCP\Util::writeLog('core', __METHOD__.', exception: ' . $e->getMessage(), - \OCP\Util::ERROR); + \OCP\Util::DEBUG); return array(); } }