summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2013-12-16 08:30:08 -0800
committerThomas Tanghus <thomas@tanghus.net>2013-12-16 08:30:08 -0800
commit28a28611fb9bf58bb949342cc105057f643dc1bf (patch)
tree11e1a13f6ae061df2368f6111eeca47218d09912 /lib
parentfed63dff06be502a8dc98f565da787b983b6aa55 (diff)
parenta3fbad43c176e89261bbedcefb261168255df6d1 (diff)
downloadnextcloud-server-28a28611fb9bf58bb949342cc105057f643dc1bf.tar.gz
nextcloud-server-28a28611fb9bf58bb949342cc105057f643dc1bf.zip
Merge pull request #6448 from owncloud/silence_favourites
Use DEBUG instead of ERROR when favourites not found.
Diffstat (limited to 'lib')
-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();
}
}