log

log(message: String) updating;

The log method of the JadeLog class outputs the message specified in the message parameter. A log message forces any pending info or trace methods to be output to disk by forcing a flush of the file buffer of the receiver to disk.

As a lot of calls to log APIs increases the amount of physical disk I/O, where possible use the info methods to avoid impacting on the performance of the application.

This method is executed on the local, or current, node.