C# Class Axiom.Core.LogListenerEventArgs

Inheritance: System.EventArgs
Datei anzeigen Open project: WolfgangSt/axiom Class Usage Examples

Public Methods

Method Description
LogListenerEventArgs ( string message, LogMessageLevel lml, bool maskDebug, string logName ) : System

This is called whenever the log recieves a message and is about to write it out

Method Details

LogListenerEventArgs() public method

This is called whenever the log recieves a message and is about to write it out
public LogListenerEventArgs ( string message, LogMessageLevel lml, bool maskDebug, string logName ) : System
message string The message to be logged
lml LogMessageLevel The message level the log is using
maskDebug bool If we are printing to the console or not
logName string the name of this log (so you can have several listeners for different logs, and identify them)
return System