FlightLog

main

This swift package used to record NSLog()/print() information to file.
453jerry/FlightLog

FlightLog

swift platform
This package implements a recorder to record runtime log to file.

How to use

Only need to invoke LogRecorder.shared.record(), Recorder will automatically log all stdout and stderr to a file. No need to modify NSLog(_:) or print(_:) in your code.

_ = LogRecorder.shared.record()

If you want the logs to have different levels, you can use the log enum.

Log.debug.write("This is a debug log")          // 🔍 This is a debug log
Log.info.write("This is a info log")            // 💬 This is a info log
Log.warning.write("This is a warning log")      // ⚠️ This is a warning log
Log.error.write("This is a error log")          // ❌ This is a error log

Log enumeration also supports ignoring logs by log level.

Log.setIngore(levels: [.debug])

Description

  • Swift Tools 5.4.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 10 2024 01:44:14 GMT-1000 (Hawaii-Aleutian Standard Time)