Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Yang committed Jan 6, 2016
1 parent 6eecfd0 commit 41d96ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/molderl_recovery.erl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ handle_info({udp, _Client, IP, Port, <<SessionName:10/binary,SequenceNumber:64/b
lager:debug("[molderl] Replied recovery request from ~p - reply contains ~p messages", [IP, NumMsgs]);

{warning, Reason} ->
lager:warning("[molderl] Unable to service recovery request from ~p because ~s. Ignoring.", [IP, Reason])
lager:warning("[molderl] Unable to service recovery request from ~p because ~s. Ignoring.", [IP, Reason]);

{error, Reason} ->
lager:error("[molderl] Unable to service recovery request from ~p because ~s. Ignoring.", [IP, Reason])
Expand Down

0 comments on commit 41d96ef

Please sign in to comment.