Skip to content

Commit

Permalink
fixup! fix(teams): resolve undefined variable error and add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
miaulalala committed Aug 26, 2024
1 parent f0a6f21 commit daf421b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/ContactController.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function getCircleMembers(string $circleId):JSONResponse {
$user = $this->userManager->get($circleMemberUserId);

if ($user === null) {
$this->logger->warning('Could not find user with user id' . $circleMemberUserId);
$this->logger->error('Could not find user with user id' . $circleMemberUserId);
throw new ServiceException('Could not find circle member');
}

Expand Down

0 comments on commit daf421b

Please sign in to comment.