changed println() to print()

Xcode7.0.1/Swift2.0 release build complains about the println() lines.
This commit is contained in:
Kurt Ernstsen
2015-09-28 23:30:44 -05:00
parent ce4432f0e2
commit d14a80f748

View File

@@ -295,10 +295,10 @@ public func debugEnabled(debugEnabled: Bool) {
#if Debug
Manager.defaultManager.debugEnabled = debugEnabled
#else
println("[Armchair] Debug is disabled on release builds.")
println("[Armchair] If you really want to enable debug mode,")
println("[Armchair] add \"-DDebug\" to your Swift Compiler - Custom Flags")
println("[Armchair] section in the target's build settings for release")
print("[Armchair] Debug is disabled on release builds.")
print("[Armchair] If you really want to enable debug mode,")
print("[Armchair] add \"-DDebug\" to your Swift Compiler - Custom Flags")
print("[Armchair] section in the target's build settings for release")
#endif
}