class LoggerImpl
package champaign.core.logging
import champaign.core.logging.Logger
Available on all platforms
Methods
addTarget(target:AbstractLoggerTarget):Int
Adds a log target
Parameters:
target | The AbstractLoggerTarget implementation |
---|
count(label:String = "default", ?pos:Null<PosInfos>):Int
Writes the number of times that count() has been invoked with the same label. Call Logger.countReset(label) to reset the count.
Parameters:
label |
---|
Returns:
The total count for label
countReset(label:String = "default", ?pos:Null<PosInfos>):Void
Resets a count with the defined label
Parameters:
null | label |
---|
debug(v:Dynamic, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
Logs a message in all targets with LogLevel.Debug
Parameters:
v | The message to be logged |
---|---|
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |
error(v:Dynamic, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
Logs a message in all targets with LogLevel.Error
Parameters:
v | The message to be logged |
---|---|
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |
fatal(v:Dynamic, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
Logs a message in all targets with LogLevel.Fatal
Parameters:
v | The message to be logged |
---|---|
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |
getTargetsByClass(targetClass:Class<AbstractLoggerTarget>):Array<AbstractLoggerTarget>
Returns an array of targets with the given class
Parameters:
targetClass | The class of the requested targets |
---|
Returns:
Array
info(v:Dynamic, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
Logs a message in all targets with LogLevel.Info
Parameters:
v | The message to be logged |
---|---|
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |
log(v:Dynamic, level:LogLevel = LogLevel.Info, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
The main log function
Parameters:
v | The message to be logged |
---|---|
level | The level of the log |
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |
verbose(v:Dynamic, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
Logs a message in all targets with LogLevel.Verbose
Parameters:
v | The message to be logged |
---|---|
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |
warning(v:Dynamic, ?customMessageObject:Dynamic, ?pos:Null<PosInfos>):Void
Logs a message in all targets with LogLevel.Warning
Parameters:
v | The message to be logged |
---|---|
customMessageObject | An optional message object that will be attached to the formatted message |
pos | PosInfos when debug is enabled |