summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Server.php
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2022-10-28 10:37:49 +0200
committerAnna Larch <anna@nextcloud.com>2023-01-04 16:58:00 +0100
commit05f2dc68fcdcd26d4841c20f090b8a7c485fa14d (patch)
tree38c73e22174493e833b7ff27616b5ca3de9992cf /apps/dav/lib/Server.php
parent926546333c9b6eaea21ac4006b682d2d9dd0fc3d (diff)
downloadnextcloud-server-05f2dc68fcdcd26d4841c20f090b8a7c485fa14d.tar.gz
nextcloud-server-05f2dc68fcdcd26d4841c20f090b8a7c485fa14d.zip
[WIP] Add logging to Scheduling Plugin
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'apps/dav/lib/Server.php')
-rw-r--r--apps/dav/lib/Server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Server.php b/apps/dav/lib/Server.php
index 437a425fcd3..a5833e5175f 100644
--- a/apps/dav/lib/Server.php
+++ b/apps/dav/lib/Server.php
@@ -171,7 +171,7 @@ class Server {
if ($this->requestIsForSubtree(['calendars', 'public-calendars', 'system-calendars', 'principals'])) {
$this->server->addPlugin(new \OCA\DAV\CalDAV\Plugin());
$this->server->addPlugin(new \OCA\DAV\CalDAV\ICSExportPlugin\ICSExportPlugin(\OC::$server->getConfig(), $logger));
- $this->server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin(\OC::$server->getConfig()));
+ $this->server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class)));
if (\OC::$server->getConfig()->getAppValue('dav', 'sendInvitations', 'yes') === 'yes') {
$this->server->addPlugin(\OC::$server->query(\OCA\DAV\CalDAV\Schedule\IMipPlugin::class));
}