We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d275d3f commit a28f916Copy full SHA for a28f916
src/bpe.erl
@@ -95,7 +95,7 @@ val(Document,Proc,Cond,Action) ->
95
case Cond(Document,Proc) of
96
true -> Action(Document,Proc), {reply,Proc};
97
{false,Message} -> {{reply,Message},Proc#process.task,Proc};
98
- ErrorList -> io:format("BPE:val/4 failed: ~p~n",[ErrorList]),
+ ErrorList -> io:format("BPE:val/4 failed: ~tp~n",[ErrorList]),
99
{{reply,ErrorList},Proc#process.task,Proc} end.
100
101
option(Proc, Key) -> proplists:get_value(Key,Proc#process.options).
src/bpe_proc.erl
@@ -21,7 +21,7 @@ process_event(Event,Proc) ->
21
22
NewProcState = ProcState#process{task = Target},
23
FlowReply = fix_reply({Status,{Reason,Target},NewProcState}),
24
- wf:info(?MODULE,"Process ~p Flow Reply ~p ",[Proc#process.id,{Status,{Reason,Target}}]),
+ wf:info(?MODULE,"Process ~p Flow Reply ~tp ",[Proc#process.id,{Status,{Reason,Target}}]),
25
kvs:put(transient(NewProcState)),
26
FlowReply.
27
@@ -59,7 +59,7 @@ process_flow(Stage,Proc,NoFlow) ->
59
60
61
62
63
64
65
0 commit comments