log: Make adapter method calls less verbose
Changes logging level for some repeated calls from 'info' to 'debug'.
This commit is contained in:
parent
e8b8c9e1dc
commit
133fa840e7
2 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ class NextcloudGroupAdapter extends AbstractAdapter
|
|||
*/
|
||||
public function getCoreGroup(?IGroup $ncGroup): ?CoreGroup
|
||||
{
|
||||
$this->logger->info(
|
||||
$this->logger->debug(
|
||||
"[" . NextcloudGroupAdapter::class . "] entering getCoreGroup() method"
|
||||
);
|
||||
|
||||
|
@ -80,7 +80,7 @@ class NextcloudGroupAdapter extends AbstractAdapter
|
|||
*/
|
||||
public function getNCGroup(?CoreGroup $coreGroup, IGroup $ncGroup): ?IGroup
|
||||
{
|
||||
$this->logger->info(
|
||||
$this->logger->debug(
|
||||
"[" . NextcloudGroupAdapter::class . "] entering getNCGroup() method"
|
||||
);
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ class NextcloudUserAdapter extends AbstractAdapter
|
|||
*/
|
||||
public function getCoreUser(?IUser $ncUser): ?CoreUser
|
||||
{
|
||||
$this->logger->info(
|
||||
$this->logger->debug(
|
||||
"[" . NextcloudUserAdapter::class . "] entering getCoreUser() method"
|
||||
);
|
||||
|
||||
|
@ -86,7 +86,7 @@ class NextcloudUserAdapter extends AbstractAdapter
|
|||
*/
|
||||
public function getNCUser(?CoreUser $coreUser, IUser $ncUser): ?IUser
|
||||
{
|
||||
$this->logger->info(
|
||||
$this->logger->debug(
|
||||
"[" . NextcloudUserAdapter::class . "] entering getNCUser() method"
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue