Skip to content

Commit

Permalink
Missing a parameter to the error message which masks the real error w…
Browse files Browse the repository at this point in the history
…hen handoff has issues
  • Loading branch information
Ryan Tilder committed Dec 21, 2010
1 parent 0f18967 commit 4607c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riak_core_handoff_receiver.erl
Expand Up @@ -63,7 +63,7 @@ handle_info({tcp, Socket, Data}, State) ->
case catch(process_message(MsgType, MsgData, State)) of
{'EXIT', Reason} ->
error_logger:error_msg("Handoff receiver for partition ~p exiting abnormally after "
"processing ~p objects: ~p\n", [State#state.count, Reason]),
"processing ~p objects: ~p\n", [State#state.partition, State#state.count, Reason]),
{stop, normal, State};
NewState when is_record(NewState, state) ->
inet:setopts(Socket, [{active, once}]),
Expand Down

0 comments on commit 4607c45

Please sign in to comment.