scala-macro-debug icon indicating copy to clipboard operation
scala-macro-debug copied to clipboard

Scala macros for making debugging easier

Results 3 scala-macro-debug issues
Sort by recently updated
recently updated
newest added

Dear Scala macro debug, I have my own debug library in Scala: https://github.com/JohnReedLOL/scala-trace-debug This library is good, but it is missing a few features. Your library has these features. Please...

It would be universal solution to stringify a param for later reuse of the string rather than simply println it in the debug.

For most of complex applications you use Logger instead of prinln, but scala-macro-debug returns Unit so I cannot say Logger.debug(debug(some expression)). So, at least String instead of unit as return...