12.4.21.1    LOGALM

Description:   Makes an entry in the Alarm Log with user defined text.

Syntax:

Tcl:              LOGALM {text string}

                   LOGALM @tag
LOGALM
$script_variable

 

JScript:         LOGALM("string");

                   LOGALM("@tag");
LOGALM
(
script_variable);

 

VB Script:      LOGALM "string"

                   LOGALM "@tag"
LOGALM
script_variable

 

Argument:     text string

See Also:      LOGACT, <LOGALM>

Places Time Stamp, Date and Text string in the Alarm Log (does not make entry in alarm summary). Time and Date is when keymacro executed. Priority is 0.

Examples:        

# tcl

LOGALM {USER ALARM LOG ENTRY}
 

// JScript

LOGACT("USER ALARM LOG ENTRY");

 

 

Rem VB Script

LOGACT "USER ALARM LOG ENTRY"

 

# tcl

#records contents of TEXTAG1 to Action Log

LOGACT  @TEXTTAG1

# declares variable string1 to pass message

set string1 {The LOGALM tcl script ran to completion}

LOGALM $string1

 

// JScript

// records contents of TEXTAG1 to Action Log

LOGALM("@TEXTTAG1");

// declares variable string1 to pass message

var string1 = "The LOGALM JScript ran to completion";

LOGALM(string1);

 

Rem VB Script

LOGALM "@AC3_LABZAT1"

Rem declares variable string1 to pass message

Dim string1

string1 = "The LOGALM VB Script ran to completion"

LOGALM string1