fix: rm unknown call (`ct:pal`)

This commit is contained in:
Thales Macedo Garitezi 2022-01-05 10:37:45 -03:00
parent 7ea1cf40ae
commit c882b08b08
No known key found for this signature in database
GPG Key ID: DD279F8152A9B6DD
1 changed files with 1 additions and 3 deletions

View File

@ -162,9 +162,7 @@ pre_config_update(_, {enable, Name, Enable}, OldConf) ->
case replace_conf(Name,
fun(Conf) -> Conf#{<<"enable">> => Enable} end, OldConf) of
not_found -> {error, not_found};
NewConf ->
ct:pal(">>>> enable Name:~p Enable:~p, New:~p~n", [Name, Enable, NewConf]),
{ok, NewConf}
NewConf -> {ok, NewConf}
end.
post_config_update(_KeyPath, UpdateReq, NewConf, _OldConf, _AppEnvs) ->