Swiftlet Name
The Swiftlet name of the LogSwiftlet is sys$log.
Log Concept
All Swiftlets do their logging via the LogSwiftlet. By logging a message, 3 log levels can be specified: info, warning and error. For each of these a separate logfile can be specified. It is also possible to collect messages such as info and warning in one file or to put all messages into one file by simply specifying the same filename.
Logfile Info
Optional property that specifies the filename of the logfile for info messages.
The default value for this property is "./swiftmq_info.log".
Property definition:
swiftlet.sys$log.logfile.info=<filename>
|
Example:
swiftlet.sys$log.logfile.info=../../log/swiftmq.log
|
Logfile Warning
Optional property that specifies the filename of the logfile for warning messages.
The default value for this property is "./swiftmq_warning.log".
Property definition:
swiftlet.sys$log.logfile.warning=<filename>
|
Example:
swiftlet.sys$log.logfile.warning=../../log/swiftmq.log
|
Logfile Error
Optional property that specifies the filename of the logfile for error messages.
The default value for this property is "./swiftmq_error.log".
Property definition:
swiftlet.sys$log.logfile.error=<filename>
|
Example:
swiftlet.sys$log.logfile.error=../../log/swiftmq.log
|