summaryrefslogtreecommitdiff
path: root/src/mod_stun_disco.erl
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2020-06-19 18:04:26 +0200
committerHolger Weiss <holger@zedat.fu-berlin.de>2020-06-19 18:04:26 +0200
commit515dfc002be46e090e9d4f3d82b2108c28417e07 (patch)
tree3f15d5cce671ed57bb3322811fe1e88741da41bb /src/mod_stun_disco.erl
parentDocument that only ejabberdctl can join and leave a local node (#3049) (diff)
mod_stun_disco: Fix wording of log message
Diffstat (limited to 'src/mod_stun_disco.erl')
-rw-r--r--src/mod_stun_disco.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_stun_disco.erl b/src/mod_stun_disco.erl
index 94241e3f..894fca8f 100644
--- a/src/mod_stun_disco.erl
+++ b/src/mod_stun_disco.erl
@@ -347,7 +347,7 @@ handle_cast({reload, NewOpts, _OldOpts}, #state{host = Host} = State) ->
TTL = get_configured_ttl(NewOpts),
{noreply, State#state{services = Services, secret = Secret, ttl = TTL}};
handle_cast(Request, State) ->
- ?ERROR_MSG("Got unexpected request from: ~p", [Request]),
+ ?ERROR_MSG("Got unexpected request: ~p", [Request]),
{noreply, State}.
-spec handle_info(term(), state()) -> {noreply, state()}.