Skip to content

dump.string

The dump.string command can be used to output strings in the console (in the DbgViewer log).

Info

This command has no effect on script execution and is available for logging and troubleshooting.

Syntax

dump.string {character string}

Example

Function ScriptBeforeUpload
{
    $def::var1 = {Network address for backup directory}\$vdog::uploadjob->5002
    $def::var2 = $vdog::yyyymmdd

    dump.string value 1 is $def::var1
    dump.string $def::var1
    dump.string $def::var2
}