HeliumLoggerFormatValues
public enum HeliumLoggerFormatValues : String
The set of substitution “variables” that can be used when formatting the messages to be logged.
-
The message being logged.
Declaration
Swift
case message = "(%msg)" -
The name of the function invoking the logger API.
Declaration
Swift
case function = "(%func)" -
The line in the source code of the function invoking the logger API.
Declaration
Swift
case line = "(%line)" -
The file containing the source code of the function invoking the logger API.
Declaration
Swift
case file = "(%file)" -
The type of the logged message (i.e. error, warning, etc.).
Declaration
Swift
case logType = "(%type)" -
The time and date at which the message was logged.
Declaration
Swift
case date = "(%date)"
View on GitHub
HeliumLoggerFormatValues Enumeration Reference