Skip to content

log.warning

The log.warning command can be used to write text as a warning in the log file of the script interface. Warnings can thus be displayed in the job results.

Info

This command is only available for the BeforeUpload and AfterUpload script interfaces.

Syntax

log.warning {Character string}

Example

Function ScriptBeforeUpload
{
    ...
    //
    // Script logic
    //
    log.warning No changes were found. Please check.
    ...
}