chore(mqueue): Remove forgotten debug message

This commit is contained in:
k32 2021-09-07 11:33:16 +02:00
parent 5fc1036cf7
commit 9b097ac73f
1 changed files with 0 additions and 1 deletions

View File

@ -211,7 +211,6 @@ out(MQ = #mqueue{q = Q, counter = 0}) ->
},
out(MQ1);
out(MQ = #mqueue{q = Q, len = Len, counter = Cnt}) ->
ct:pal("Cnt ~p", [Cnt]),
{R, Q1} = ?PQUEUE:out(Q),
{R, MQ#mqueue{q = Q1, len = Len - 1, counter = Cnt - 1}};
out(?OLD(MQ)) ->