Simple Logger(Console and file) for Swift
When things are simple and easy to use then everyone uses it. When we think about logger then one think come to mind is "print" statement. It is very powerful. Let us see How? Features - 1. You can different level for log DEBUG,INFO,ERROR,EXCEPTION,WARNING 2. You can configure it for DEBUG, RELEASE or any configurations 3. You can configure statements for console logging. 4. You can use file logger. 5. You can configure statements for file logger. 6. you can configure timestamp, filename, function name and line to be added or not Why to use this logger ? because you don't need to spend time to understand How to use it if you are aware of how to use "print" How to use ? print("One operation is completed.",logLevel:.DEBUG) print("Oeration ",logLevel:.INFO) print("Devide by zero error",logLevel:.ERROR) ...