Difference between revisions of "Mudet logger package"
Jump to navigation
Jump to search
(initial creation) |
|||
Line 50: | Line 50: | ||
'''Alias : <code>^startCombatLog$</code>''' | '''Alias : <code>^startCombatLog$</code>''' | ||
− | < | + | <syntaxhighlight lang="lua"> |
if (not combatLogger) then | if (not combatLogger) then | ||
combatLogger = Logger.createLogger("MyPKLog", { | combatLogger = Logger.createLogger("MyPKLog", { | ||
Line 62: | Line 62: | ||
combatLogger:start(); | combatLogger:start(); | ||
− | </ | + | </syntaxhighlight> |
Latest revision as of 02:09, 19 January 2024
Game | non-mud specific |
By | Keegan Wantz |
Download | Github |
Dependencies | Mudlet 4.17 |
Description
Loggers for Mudlet, for those times when you also want to log things that you don't explicitly see.
Usage
Logger.createLogger(filename, options)
- Creates a new logger for a given filename with the given options. Where options are:
timestamp = true | false (default: true)
- This uses Mudlet's timestamp, rather than capturing per-line.
maxFilesize = 1+ (default: infinite)
- This is the max filesize in kilobytes. Please make this a reasonable number (probably > 5000 for 5 mb filesize), or you will have a million tiny log files before very long.
keepOpen = true | false (default: true)
- Not sure this is actually necessary.
format = "html" | "ans" | "txt" (default: "html")
- I don't think this is slow enough to fake an enum vs. just using the string.
logAllSends = true | false (default: false)
- This can result in double logging of inputs, but will catch send("...", false).
myLogger:start()
- Begins logging from the current point in time. Creates a new log file if necessary, otherwise reopens the existing log file.
myLogger:stop()
- Stops logging at the current point in time, and closes the log file.
myLogger:log(str)
- Logs a string to the current logger, separate from game output.
Logger:buildTooltip(displayText, tooltipText, location)
- Builds a tooltip for HTML logs. Valid locations are left | right | top | bottom
- e.g.
myLogger:log(Logger:buildTooltip("This is a test tooltip.", "WEEOOWEEOO", "right"));
- e.g.
See also: Github
Examples
Alias : ^startCombatLog$
if (not combatLogger) then
combatLogger = Logger.createLogger("MyPKLog", {
timestamp = true,
keepOpen = true,
format = "html",
logAllSends = true,
maxFilesize = 1024
});
end
combatLogger:start();
Trigger : On Prompt
combatLogger:log(string.format("My current blood: %dAm I paralyzed? %s", gmcp.Char.Vitals.blood, myAffs.paralysis and "Yes" or "No"));
Alias : ^stopCombatLog$
combatLogger:stop();