diff --git a/src/runtime/mod.rs b/src/runtime/mod.rs index 5dbac51a7f84823a0de49e6b4521231d187e60f6..50d90e104bbd3c55fa4892c62290a386147f65fa 100644 --- a/src/runtime/mod.rs +++ b/src/runtime/mod.rs @@ -438,7 +438,13 @@ impl Predicate { impl Debug for Predicate { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { for (ChannelId { controller_id, channel_index }, &v) in self.assigned.iter() { - write!(f, "{:?}=>{}", (controller_id, channel_index), if v { 'T' } else { 'F' })?; + write!( + f, + "({:?},{:?})=>{}, ", + controller_id, + channel_index, + if v { 'T' } else { 'F' } + )?; } Ok(()) }