Correct monolog behavior
This commit is contained in:
parent
fdf52465fe
commit
78583620fa
|
|
@ -115,7 +115,7 @@ class OrganizationsService
|
||||||
);
|
);
|
||||||
$this->loggerService->logAdminNotified([
|
$this->loggerService->logAdminNotified([
|
||||||
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
||||||
'target_user_id' => $newUser->getId(),
|
'target_user_id' => $invitedUser->getId(),
|
||||||
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -130,7 +130,7 @@ class OrganizationsService
|
||||||
);
|
);
|
||||||
$this->loggerService->logAdminNotified([
|
$this->loggerService->logAdminNotified([
|
||||||
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
||||||
'target_user_id' => $newUser->getId(),
|
'target_user_id' => $removedUser->getId(),
|
||||||
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -145,7 +145,7 @@ class OrganizationsService
|
||||||
);
|
);
|
||||||
$this->loggerService->logAdminNotified([
|
$this->loggerService->logAdminNotified([
|
||||||
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
||||||
'target_user_id' => $newUser->getId(),
|
'target_user_id' => $removedUser->getId(),
|
||||||
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
@ -159,7 +159,7 @@ class OrganizationsService
|
||||||
);
|
);
|
||||||
$this->loggerService->logAdminNotified([
|
$this->loggerService->logAdminNotified([
|
||||||
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
'admin_user_id' =>$adminUO->getUsers()->getId(),
|
||||||
'target_user_id' => $newUser->getId(),
|
'target_user_id' => $activatedUser->getId(),
|
||||||
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
'organization_id' => $data['organization']->getId(),'case' =>$type]);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue