The FMPLog.Level enumeration is used to determine a logging level.
enum FMPLog.Level : Int32
It is used by the level property of the FMPLog class and by the level(_:) method of the FMPLog.Builder class.
Value | Description |
database | Work with database. case database = 1 |
verbose | Default. Detailed information about debugging and testing. case verbose = 2 |
debug | Debugging information for developer. case debug = 3 |
warning | Warning - the user/developer should pay attention to application work result. case warning = 4 |
error | The error, after which an application can work but results may be unexpected. case error = 5 |
output | Standard output. case output = 6 |
See also: