logClient

logClient(message: String) updating;

The logClient method of the JadeLog class outputs the message specified in the message parameter.

A logClient message forces any pending info or trace methods to be output to the log file 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 IO, where possible use the info methods to avoid impacting on the performance of the application.

This method is executed on the client node.