class SysPrintTarget
package champaign.sys.logging.targets
extends AbstractLoggerTarget
Available on Sys
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
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 |
useThread | If true, log messages will be processed printed in a newly created thread. Note: all instances of SysPrintTarget will use the same thread |