LogOutput
Script function

world.LogOutput

DOC_scripting Read about scripting

Type

Property

Summary

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

Prototype

short LogOutput;

DOC_data_types 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

DOC_logging Logging

Functions

FNC_CloseLog CloseLog (Closes the log file)
FNC_FlushLog FlushLog (Flushes the log file to disk)
FNC_IsLogOpen IsLogOpen (Tests to see if a log file is open)
FNC_LogInput LogInput (The property of whether commands are logged to the log file)
FNC_LogNotes LogNotes (The property of whether notes are logged to the log file)
FNC_LogSend LogSend (Sends a message to the MUD and logs it)
FNC_OpenLog OpenLog (Opens a log file.)
FNC_WriteLog WriteLog (Writes to the log file)

(Help topic: function=LogOutput)

DOC_contents Documentation contents page