-
Notifications
You must be signed in to change notification settings - Fork 0
API Reference
Thev2Andy edited this page Jan 19, 2022
·
11 revisions
• Definition
Calls a log, sent over to the OnLog event, and saves it in a log file. (optional)
public static void Log(string LogMessage, LogType MessageType, bool Timestamp, object LogSender)• Parameters
The message of the log.
The type of the log.
Timestamp this log in the file?
The sender of the log. (Only used when passing the reference to LogEventArgs)
public static event EventHandler<LogEventArgs> OnLog;Invoked on Log() call.
public static bool WriteInLogFile = true;Toggle writing logs to a file, stored next to the caller assembly.