prior to Swift 2 you could hide all your println() for release by having a little helper like this
func println(object: Any) {
#if DEBUG
Swift.println(object)
#endif
If you change this to
func print(object: Any) {
#if DEBUG
Swift.print(object)
#endif
it works as expected however print() has a new appendLine feature. So in your code you could write
println("Test", appendNewLine: false)
Doing this however means the above mentioned helper will not work anymore. Any suggestions of how to fix this. Thank you very much.