A log target that prints messages to stdout using Sys.println, and to stderr using Sys.stderr().writeString(). Can only be used on targets where the sys package is available

Constructor

@:value({ useThread : false, useColoredOutput : true, machineReadable : false, printTime : false, logLevel : LogLevel.Info })new(logLevel:LogLevel = LogLevel.Info, printTime:Bool = false, machineReadable:Bool = false, useColoredOutput:Bool = true, useThread:Bool = false)

Creates a log target that prints messages to stdout using Sys.println(), and to stderr using Sys.stderr().writeString()

Parameters:

logLevel

Default log level. Any messages with higher level than this will not be logged

printTime

Prints a time-stamp for every message logged, if true

machineReadable

Prints messages in machine-readable format (Json string)

useColoredOutput

If true, the output is using color ANSI Color codes

useThread

If true, log messages will be processed printed in a newly created thread. Note: all instances of SysPrintTarget will use the same thread

Inherited Variables

Defined by AbstractLoggerTarget

@:value(true)enabled:Bool = true

Inherited Methods

Defined by AbstractLoggerTarget

addFilter(source:String, replace:String):Void

Adds a filter to this target. Each source match will be replaced with the replace value.

Parameters:

source

The source to replace

replace

The value to replace the source with

clear():Void