Data Integration
- Data Integration
- All Products
logError(String errorMessage);
Argument
| Data Type
| Input/Output
| Description
|
---|---|---|---|
errorMessage
| String
| Input
| Error message string.
|
// Log an error if BASE_SALARY is null. if (isNull("BASE_SALARY")) { logError("Cannot process a null salary field."); }
[JTX_1013] [ERROR] Cannot process a null salary field.