Name LogInput
Type Property
Summary The property of whether commands are logged to the log file
Prototype short LogInput;
Description Set to 1 to log commands to the log file, 0 to not log
VBscript example
world.loginput = 1   ' log input
world.loginput = 0   ' don't log input
world.note world.loginput  ' display whether input is logged
Jscript example
world.loginput = 1;   // log input
world.loginput = 0;   // don't log input
world.note(world.loginput);  // display whether input is logged
PerlScript example
$world->{loginput} = 1;   # log input
$world->{loginput} = 0;   # don't log input
$world->note($world->{loginput});  # display whether input is logged
Returns This is a property. You can use it to find whether commands (your input) are currently logged.

See also ...