Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions apps/user_ldap/lib/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -614,9 +614,11 @@ private function establishConnection(): ?bool {
}
}
$this->logger->warning(
'Main LDAP not reachable, connecting to backup',
'Main LDAP not reachable, connecting to backup: {msg}',
[
'app' => 'user_ldap'
'app' => 'user_ldap',
'msg' => $e->getMessage(),
'exception' => $e,
]
);
}
Expand Down
Loading