world.LogOutput

MUSHclient script function (Property)

The property of whether MUD output is logged to the log file

Prototype

short LogOutput;

Data type meanings

Description

Set to 1 to log output to the log file, 0 to not log

VBscript example

world.logoutput = 1   ' log output
world.logoutput = 0   ' don't log output
world.note world.logoutput  ' display whether output is logged

Jscript example

world.logoutput = 1;   // log output
world.logoutput = 0;   // don't log output
world.note(world.logoutput);  // display whether output is logged

PerlScript example

$world->{logoutput} = 1;   # log output
$world->{logoutput} = 0;   # don't log output
$world->note($world->{logoutput});  # display whether output is logged

Python example

world.logoutput = 1   # log output
world.logoutput = 0   # don't log output
world.note(world.logoutput)  # display whether output is logged

Lua example

SetLogOutput (true)   -- log output
SetLogOutput (false)   -- don't log output
Note(GetLogOutput ())  -- display whether output is logged

Lua notes

Lua implements this as two functions:

GetLogOutput - gets whether output is logged
SetLogOutput - sets whether output is logged

The argument is optional, and defaults to true.

Return value

This is a property. You can use it to find whether MUD output is currently logged.

Related topic

Logging

See also

FunctionDescription
LogInputThe property of whether commands are logged to the log file
LogNotesThe property of whether notes are logged to the log file