Forces the current plugin to terminate and continues processing with the next plugin.
Exit,<Message>[,NOWARN]
Argument | Description |
---|---|
Message | Text that will be displayed and written to the log citing the reason for the Exit . |
Flag | Description |
---|---|
NOWARN | (Optional) Suppresses the Warning state in the log. |
Default behavior is to log the Exit
action as a warning. If this is not a critical event you can override this behavior with the NOWARN
flag.
If the plugin has defined the System,OnPluginExit
directive the command will be processed before the plugin exits. This allows the developer to perform further logging and cleanup based on the reason for the Exit
.
Stop processing the current plugin and log a warning.
Exit,"Unable to continue because the file was not found."
Stop processing the current plugin, but don't log a warning.
// No need to warn the user as the action is intended to prevent further processing.
Exit,"The application is already configured.",NOWARN