aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2013-12-16 17:07:22 +0100
committerThomas Tanghus <thomas@tanghus.net>2013-12-16 17:07:22 +0100
commita3fbad43c176e89261bbedcefb261168255df6d1 (patch)
tree11e1a13f6ae061df2368f6111eeca47218d09912 /lib/private
parentfed63dff06be502a8dc98f565da787b983b6aa55 (diff)
downloadnextcloud-server-a3fbad43c176e89261bbedcefb261168255df6d1.tar.gz
nextcloud-server-a3fbad43c176e89261bbedcefb261168255df6d1.zip
Use DEBUG instead of ERROR when favourites not found. Fix #6419
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/tags.php2
1 files changed, 1 insertions, 1 deletions
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();
}
}