Writes a message to the Lua log type.
log( message )
| Argument | Description |
|---|---|
message
|
The message to log. |
log("something important happened")
You can log properties of the records being processed. If you provide multiple arguments they are written to the log file separated by tabs:
log("Processing face with ID", faceRecord.IdentityData.identifier)
|
|