You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/private/Calendar/Manager.php
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -403,7 +403,10 @@ public function handleIMipReply(
403
403
}
404
404
405
405
if (empty($found)) {
406
-
$this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar ' . $principalUri . 'and UID' . $vEvent->{'UID'}->getValue());
406
+
$this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar', [
407
+
'principalUri' => $principalUri,
408
+
'eventUid' => $vEvent->{'UID'}->getValue(),
409
+
]);
407
410
returnfalse;
408
411
}
409
412
@@ -518,7 +521,10 @@ public function handleIMipCancel(
518
521
}
519
522
520
523
if (empty($found)) {
521
-
$this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar ' . $principalUri . 'and UID' . $vEvent->{'UID'}->getValue());
524
+
$this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar', [
0 commit comments