diff --git a/src/mod_stun_disco.erl b/src/mod_stun_disco.erl index 94241e3f4..894fca8fe 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()}.