Methods

addTarget(target:AbstractLoggerTarget):Int

Adds a log target

Parameters:

target

The AbstractLoggerTarget implementation

callStack(?pos:Null<PosInfos>):Void

clear():Void

Executes clear() on all targets

@:value({ label : "default" })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

@:value({ label : "default" })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

disableAllTargets():Void

Disables all targets

@:value({ disposeTargets : false })dispose(disposeTargets:Bool = false):Void

Disposes the LoggerImpl instance

enableAllTargets():Void

Enables all targets

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 The array of targets. Empty if no target was found.

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

@:value({ level : LogLevel.Info })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

removeTarget(target:AbstractLoggerTarget):Bool

Removes a logger target

Parameters:

null

target

@:value({ label : "default" })timerLog(label:String = "default", ?pos:Null<PosInfos>):Void

@:value({ label : "default" })timerStart(label:String = "default", ?pos:Null<PosInfos>):Void

@:value({ label : "default" })timerStop(label:String = "default", ?pos:Null<PosInfos>):Void

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