Axiom.Core.LogListenerEventArgs.LogListenerEventArgs C# (CSharp) Method

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
		public LogListenerEventArgs( string message, LogMessageLevel lml, bool maskDebug, string logName )
			: base()
		{
			this.Message = message;
			this.Level = lml;
			this.MaskDebug = maskDebug;
			this.LogName = logName;
		}
	}
LogListenerEventArgs