I would like to globally ignore all println() calls in my Swift code if I am not in a Debug build. I can\'t find any robust step by step instructions for this a
println()
You could define debug_println whose contents would be roughly:
debug_println
#if DEBUG println() #endif