evennia.utils.logger

Logging facilities

These are thin wrappers on top of Twisted’s logging facilities; logs are all directed either to stdout (if Evennia is running in interactive mode) or to $GAME_DIR/server/logs.

The log_file() function uses its own threading system to log to arbitrary files in $GAME_DIR/server/logs.

Note: All logging functions have two aliases, log_type() and log_typemsg(). This is for historical, back-compatible reasons.

evennia.utils.logger.timeformat(when=None)[source]

This helper function will format the current time in the same way as the twisted logger does, including time zone info. Only difference from official logger is that we only use two digits for the year and don’t show timezone for CET times.

Parameters

when (int, optional) – This is a time in POSIX seconds on the form given by time.time(). If not given, this function will use the current time.

Returns

timestring (str) – A formatted string of the given time.

class evennia.utils.logger.WeeklyLogFile(name, directory, defaultMode=None, day_rotation=7, max_size=1000000)[source]

Bases: twisted.python.logfile.DailyLogFile

Log file that rotates once per week by default. Overrides key methods to change format.

__init__(name, directory, defaultMode=None, day_rotation=7, max_size=1000000)[source]
Parameters
  • name (str) – Name of log file.

  • directory (str) – Directory holding the file.

  • defaultMode (str) – Permissions used to create file. Defaults to current permissions of this file if it exists.

  • day_rotation (int) – How often to rotate the file.

  • max_size (int) – Max size of log file before rotation (regardless of time). Defaults to 1M.

shouldRotate()[source]

Rotate when the date has changed since last write

suffix(tupledate)[source]

Return the suffix given a (year, month, day) tuple or unixtime. Format changed to have 03 for march instead of 3 etc (retaining unix file order)

If we get duplicate suffixes in location (due to hitting size limit), we append __1, __2 etc.

Examples

server.log.2020_01_29 server.log.2020_01_29__1 server.log.2020_01_29__2

write(data)[source]

Write data to log file

class evennia.utils.logger.PortalLogObserver(f)[source]

Bases: twisted.python.log.FileLogObserver

Reformat logging

timeFormat: Optional[str] = None
prefix = ' |Portal| '
emit(eventDict)[source]

Copied from Twisted parent, to change logging output

class evennia.utils.logger.ServerLogObserver(f)[source]

Bases: evennia.utils.logger.PortalLogObserver

prefix = ' '
evennia.utils.logger.log_msg(msg)[source]

Wrapper around log.msg call to catch any exceptions that might occur in logging. If an exception is raised, we’ll print to stdout instead.

Parameters

msg – The message that was passed to log.msg

evennia.utils.logger.log_trace(errmsg=None)[source]

Log a traceback to the log. This should be called from within an exception.

Parameters

errmsg (str, optional) – Adds an extra line with added info at the end of the traceback in the log.

evennia.utils.logger.log_tracemsg(errmsg=None)

Log a traceback to the log. This should be called from within an exception.

Parameters

errmsg (str, optional) – Adds an extra line with added info at the end of the traceback in the log.

evennia.utils.logger.log_err(errmsg)[source]

Prints/logs an error message to the server log.

Parameters

errmsg (str) – The message to be logged.

evennia.utils.logger.log_errmsg(errmsg)

Prints/logs an error message to the server log.

Parameters

errmsg (str) – The message to be logged.

evennia.utils.logger.log_server(servermsg)[source]

This is for the Portal to log captured Server stdout messages (it’s usually only used during startup, before Server log is open)

evennia.utils.logger.log_warn(warnmsg)[source]

Prints/logs any warnings that aren’t critical but should be noted.

Parameters

warnmsg (str) – The message to be logged.

evennia.utils.logger.log_warnmsg(warnmsg)

Prints/logs any warnings that aren’t critical but should be noted.

Parameters

warnmsg (str) – The message to be logged.

evennia.utils.logger.log_info(infomsg)[source]

Prints any generic debugging/informative info that should appear in the log.

infomsg: (string) The message to be logged.

evennia.utils.logger.log_infomsg(infomsg)

Prints any generic debugging/informative info that should appear in the log.

infomsg: (string) The message to be logged.

evennia.utils.logger.log_dep(depmsg)[source]

Prints a deprecation message.

Parameters

depmsg (str) – The deprecation message to log.

evennia.utils.logger.log_depmsg(depmsg)

Prints a deprecation message.

Parameters

depmsg (str) – The deprecation message to log.

evennia.utils.logger.log_sec(secmsg)[source]

Prints a security-related message.

Parameters

secmsg (str) – The security message to log.

evennia.utils.logger.log_secmsg(secmsg)

Prints a security-related message.

Parameters

secmsg (str) – The security message to log.

class evennia.utils.logger.EvenniaLogFile(name, directory, rotateLength=1000000, defaultMode=None, maxRotatedFiles=None)[source]

Bases: twisted.python.logfile.LogFile

A rotating logfile based off Twisted’s LogFile. It overrides the LogFile’s rotate method in order to append some of the last lines of the previous log to the start of the new log, in order to preserve a continuous chat history for channel log files.

settings = <LazySettings "evennia.settings_default">
num_lines_to_append = 20
rotate()[source]

Rotates our log file and appends some number of lines from the previous log to the start of the new one.

seek(*args, **kwargs)[source]

Convenience method for accessing our _file attribute’s seek method, which is used in tail_log_function. :param *args: Same args as file.seek :param **kwargs: Same kwargs as file.seek

readlines(*args, **kwargs)[source]

Convenience method for accessing our _file attribute’s readlines method, which is used in tail_log_function. :param *args: same args as file.readlines :param **kwargs: same kwargs as file.readlines

Returns

lines (list) – lines from our _file attribute.

evennia.utils.logger.log_file(msg, filename='game.log')[source]

Arbitrary file logger using threads.

Parameters
  • msg (str) – String to append to logfile.

  • filename (str, optional) – Defaults to ‘game.log’. All logs will appear in the logs directory and log entries will start on new lines following datetime info.

evennia.utils.logger.tail_log_file(filename, offset, nlines, callback=None)[source]

Return the tail of the log file.

Parameters
  • filename (str) – The name of the log file, presumed to be in the Evennia log dir.

  • offset (int) – The line offset from the end of the file to start reading from. 0 means to start at the latest entry.

  • nlines (int) – How many lines to return, counting backwards from the offset. If file is shorter, will get all lines.

  • callback (callable, optional) – A function to manage the result of the asynchronous file access. This will get a list of lines. If unset, the tail will happen synchronously.

Returns

lines (deferred or list)

This will be a deferred if callable is given,

otherwise it will be a list with The nline entries from the end of the file, or all if the file is shorter than nlines.