1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00

Fix one error reporting line in the group controller.

This commit is contained in:
Bernhard Reiter 2014-08-09 16:48:30 +02:00
parent 319f68051b
commit 0d6f16f612

View File

@ -39,7 +39,7 @@ class GroupController extends Controller {
$ids = $this->tags->getIdsForTag($tag['name']);
$tag['contacts'] = $ids;
} catch(\Exception $e) {
$this->api->log(__METHOD__ . ' ' . $e->getMessage());
\OCP\Util::writeLog('contacts', __METHOD__ . ', ' . $e->getMessage(), \OCP\Util::ERROR);
}
}