Can we instead use global function override to make `println` do nothing? I think it’s cleaner this way :) Like this:

#if DEBUG
func println(object: Any) {}
func print(object: Any){}
#endif