WriteLog

Writes a log message out

Method Signature

WriteLog(text=[string], type=[string], application=[boolean], log=[string])

Arguments

Argument
Type
Required
Description
Default

text

string

true

The text of the log message

type

string

false

The log level of the entry. One of "Information", "Warning", "Error", "Debug", "Trace"

info

application

boolean

false

If true, it logs the application name alongside the message. Default is true.

true

log

string

false

The destination logger to use. If not passed, we use the default logger (application.log). If the logger is a file appender and it doesn't exist it will create it for you. If the value is an absolue path, it will create a file appender for you at that location.

Examples

Last updated

Was this helpful?