From a3fbad43c176e89261bbedcefb261168255df6d1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 16 Dec 2013 17:07:22 +0100 Subject: [PATCH] Use DEBUG instead of ERROR when favourites not found. Fix #6419 --- lib/private/tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } } -- 2.39.5