Merge branch 'develop' into 'develop'
LDAP Authenticator: Improve error reporting. See merge request pleroma/pleroma!4171
This commit is contained in:
commit
19eeea7c12
1
changelog.d/ldap-error-logging.change
Normal file
1
changelog.d/ldap-error-logging.change
Normal file
@ -0,0 +1 @@
|
|||||||
|
Improve error logging when LDAP authentication fails.
|
@ -91,7 +91,8 @@ defmodule Pleroma.Web.Auth.LDAPAuthenticator do
|
|||||||
end
|
end
|
||||||
|
|
||||||
error ->
|
error ->
|
||||||
error
|
Logger.error("Could not bind LDAP user #{name}: #{inspect(error)}")
|
||||||
|
{:error, {:ldap_bind_error, error}}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -111,7 +112,8 @@ defmodule Pleroma.Web.Auth.LDAPAuthenticator do
|
|||||||
try_register(name, attributes)
|
try_register(name, attributes)
|
||||||
|
|
||||||
error ->
|
error ->
|
||||||
error
|
Logger.error("Couldn't register user because LDAP search failed: #{inspect(error)}")
|
||||||
|
{:error, {:ldap_search_error, error}}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user