LDAP Authenticator: Improve error reporting.

This commit is contained in:
Taylan Kammer 2024-07-10 07:21:37 +02:00
parent ef2ada59e0
commit 03c3c58d74
2 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1 @@
Improve error logging when LDAP authentication fails.

View file

@ -91,7 +91,8 @@ defmodule Pleroma.Web.Auth.LDAPAuthenticator do
end
error ->
error
Logger.error("Could not bind LDAP user #{name}: #{inspect(error)}")
{:error, {:ldap_bind_error, error}}
end
end
@ -111,7 +112,8 @@ defmodule Pleroma.Web.Auth.LDAPAuthenticator do
try_register(name, attributes)
error ->
error
Logger.error("Couldn't register user because LDAP search failed: #{inspect(error)}")
{:error, {:ldap_search_error, error}}
end
end