sharkdp / dbg-macro

A dbg(…) macro for C++
MIT License
2.96k stars 254 forks source link

Printing multiple values on one line #139

Open MrQubo opened 3 weeks ago

MrQubo commented 3 weeks ago

I would prefer that dbg(a, b, c) prints values in one line, instead of three separate lines. This makes output much easier to read in my opinion. This shouldn't be hard to implement and users can choose what they prefer by defining some macro setting like DBG_MACRO_SINGLE_LINE.

MrQubo commented 3 weeks ago

I'll make a PR later.