fix(ldap): lower the log level of LDAB to `debug`
This commit is contained in:
parent
20cd47ac89
commit
e9febf231f
|
@ -1,6 +1,6 @@
|
||||||
{application, emqx_ldap, [
|
{application, emqx_ldap, [
|
||||||
{description, "EMQX LDAP Connector"},
|
{description, "EMQX LDAP Connector"},
|
||||||
{vsn, "0.1.7"},
|
{vsn, "0.1.8"},
|
||||||
{registered, []},
|
{registered, []},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
|
|
|
@ -327,7 +327,7 @@ do_ldap_query(
|
||||||
mk_log_func(LogTag) ->
|
mk_log_func(LogTag) ->
|
||||||
fun(_Level, Format, Args) ->
|
fun(_Level, Format, Args) ->
|
||||||
?SLOG(
|
?SLOG(
|
||||||
info,
|
debug,
|
||||||
#{
|
#{
|
||||||
msg => LogTag,
|
msg => LogTag,
|
||||||
log => io_lib:format(Format, [redact_ldap_log(Arg) || Arg <- Args])
|
log => io_lib:format(Format, [redact_ldap_log(Arg) || Arg <- Args])
|
||||||
|
|
Loading…
Reference in New Issue