diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-12-16 08:30:08 -0800 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-12-16 08:30:08 -0800 |
commit | 28a28611fb9bf58bb949342cc105057f643dc1bf (patch) | |
tree | 11e1a13f6ae061df2368f6111eeca47218d09912 /lib | |
parent | fed63dff06be502a8dc98f565da787b983b6aa55 (diff) | |
parent | a3fbad43c176e89261bbedcefb261168255df6d1 (diff) | |
download | nextcloud-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.php | 2 |
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(); } } |