Make `gst::debug!` macros work correctly with `rustfmt`
For gst::debug!
the part that confuses rustfmt
is the obj: self
, etc part as that is not valid Rust syntax by itself (only after macro expansion).
An alternative syntax will have to be found that is valid before macro expansion too.
Currently:
gst::debug!(CAT, obj: self, "foo {}", 123);