Script function
world.LogOutput
Read about scripting
Type
Property
Summary
The property of whether MUD output is logged to the log file
Prototype
short LogOutput;
View list of 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.
See Also ...
Topic
Logging
Functions
(CloseLog) Closes the log file
(FlushLog) Flushes the log file to disk
(IsLogOpen) Tests to see if a log file is open
(LogInput) The property of whether commands are logged to the log file
(LogNotes) The property of whether notes are logged to the log file
(LogSend) Sends a message to the MUD and logs it
(OpenLog) Opens a log file.
(WriteLog) Writes to the log file
(Help topic: function=LogOutput)