11 public static event Action<BadLog>?
OnLog;
19 OnLog?.Invoke(message);
26 public static void Log(
string message)
56 public static void Warn(
string message)
86 public static void Error(
string message)
Describes a specific position inside a source file.
Implements a Mask for Log Messages.
Public facing interface for a logger.
static void Warn(string message, BadLogMask mask, BadSourcePosition position)
Writes a Warning to the Message Handler.
static void Error(string message, BadLogMask mask)
Writes an Error to the Message Handler.
static void Log(string message)
Writes a Log to the Message Handler.
static void Log(string message, BadLogMask mask, BadSourcePosition position)
Writes a Log to the Message Handler.
static void Error(string message)
Writes an Error to the Message Handler.
static void Write(BadLog message)
Writes a Log to the Message Handler.
static ? Action< BadLog > OnLog
On Message Handler.
static void Log(string message, BadLogMask mask)
Writes a Log to the Message Handler.
static void Warn(string message)
Writes a Warning to the Message Handler.
static void Error(string message, BadLogMask mask, BadSourcePosition position)
Writes an Error to the Message Handler.
static void Warn(string message, BadLogMask mask)
Writes a Warning to the Message Handler.
Contains Logging system for the BadScript Runtime.
Represents a Log Message.