Last active
November 15, 2016 15:56
-
-
Save vivalalova/f58a5880d23015d90f9e84f6fbc4145d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if DEBUG | |
| func Log( message: @autoclosure () -> String, filename: NSString = #file, function: String = #function, line: Int = #line) { | |
| print("[\(filename.lastPathComponent):\(line)] %@", message()) | |
| } | |
| #else | |
| func dLog(@autoclosure message: () -> String, filename: NSString = #file, function: String = #function, line: Int = #line) { | |
| } | |
| #endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment