ENUM
# LoggingLevel
Enum describing on what level messages will be logged or logging will be turned off.
# Cases
# none
Logging is not allowed.
# debug
Messages will be logged until the debug
level.
# info
Messages will be logged until the info
level.
# warning
Messages will be logged until the warning
level.
# error
Messages will be logged until the error
level.
# Methods
# <(_:_:)
Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument.
- Parameters:
- lhs: A value to compare.
- rhs: Another value to compare.