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 | Attribute Name | Description |
---|---|---|
failure | Logs a message to the system log with the log level Failure. | |
value | A string to include as the log message. | |
warning | Logs a message to the system log with the log level Warning. | |
value | A string to include as the log message. | |
info | Logs a message to the system log with the log level Info. | |
value | A string to include as the log message. | |
debug | Logs a message to the system log with the log level Debug. | |
value | A string to include as the log message. |