Luke KolyutsakulJul 14
Swift Log - Devil
or
Why println is dangerous
172
Kostiantyn Koval
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