Logging Functions
Logging FunctionsLogging Functions
This topic defines language for the flex parser logging functions.
Logging functions provide a means for a flex parser to write to the system log. Logging functions can be extremely useful when creating a new flex parser, but should be kept to an absolute minimum when a flex parser is deployed to a production system.
Language DefinitionLanguage Definition
- Node Name: failure
- Attribute Name:
- Description: Logs a message to the system log with the log level Failure.
- Node Name:
- Attribute Name: value
- Description: A string to include as the log message.
- Node Name: warning
- Attribute Name:
- Description: Logs a message to the system log with the log level Warning.
- Node Name:
- Attribute Name: value
- Description: A string to include as the log message.
- Node Name: info
- Attribute Name:
- Description: Logs a message to the system log with the log level Info.
- Node Name:
- Attribute Name: value
- Description: A string to include as the log message.
- Node Name: debug
- Attribute Name:
- Description: Logs a message to the system log with the log level Debug.
- Node Name:
- Attribute Name: value
- Description: A string to include as the log message.