Skip to content

Commit

Permalink
ejabberd_access_permissions: Fix debug lines indentation that were ha…
Browse files Browse the repository at this point in the history
…rd to read
  • Loading branch information
badlop committed Jun 4, 2024
1 parent c7d2317 commit 8ac5369
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ejabberd_access_permissions.erl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ can_access(Cmd, CallerInfo) ->
case matches_definition(Def, Cmd, CallerModule, Tag, Host, CallerInfo) of
true ->
?DEBUG("Command '~p' execution allowed by rule "
"'~ts' (CallerInfo=~p)", [Cmd, Name, CallerInfo]),
"'~ts'~n (CallerInfo=~p)", [Cmd, Name, CallerInfo]),
allow;
_ ->
none
Expand All @@ -93,7 +93,7 @@ can_access(Cmd, CallerInfo) ->
case Res of
allow -> allow;
_ ->
?DEBUG("Command '~p' execution denied "
?DEBUG("Command '~p' execution denied~n "
"(CallerInfo=~p)", [Cmd, CallerInfo]),
deny
end.
Expand Down

0 comments on commit 8ac5369

Please sign in to comment.