Lucee Function Reference
writelog()
Writes a message to a log file.
Beispiel
writelog(string text,[string type,[boolean application,[string file,[string log]]]]):void
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Beschreibung |
---|---|---|---|
text | string | Yes | Message text to log. |
type | string | No |
Type (severity) of the message: |
application | boolean | No | log application name, if it is specified in a cfapplication tag. |
file | string | No |
Message file. Specify only the main part of the filename. For example, to log to the Testing.log file, specify "Testing". The file must be located in the default log directory. You cannot specify a directory path. If the file does not exist, it is created automatically, with the suffix .log. |
log | string | No |
If you omit the file argument, writes messages to standard log file. Ignored, if you specify file argument. |