JadeLog Class Methods

The methods defined in the JadeLog class are summarized in the following table.

Method Description
commitLog Flushes any pending info and trace messages in the file buffer to disk
getActualFileName Returns the path, name, and version of the current log file
getActualFileNameClient Returns the path, name, and version of the current log file from the client node
getActualFileNameServer Returns the path, name, and version of the current log file from the server node
info Outputs a message without flushing the output buffer (executed on the local, or current, node)
infoClient Outputs a message without flushing the output buffer (executed on the client node)
infoDump Outputs a binary block without flushing the output buffer (executed on the local, or current, node)
infoDumpClient Outputs a binary block without flushing the output buffer (executed on the client node)
infoDumpServer Outputs a binary block without flushing the output buffer (executed on the server node)
infoServer Outputs a message without flushing the output buffer (executed on the server node)
log Outputs a message and flushes the output buffer to disk (executed on the local, or current, node)
logClient Outputs a message and flushes the output buffer to disk (executed on the client node)
logDump Outputs a binary block and flushes the output buffer to disk (executed on the local, or current, node)
logDumpClient Outputs a binary block and flushes the output buffer to disk (executed on the client node)
logDumpServer Outputs a binary block and flushes the output buffer to disk (executed on the server node)
logServer Outputs a message and flushes the output buffer to disk (executed on the server node)
rollOverLog Forces the creation of a new log file before the defined value of the MaxLogFileSize parameter is reached
rollOverLogClient Forces the creation of a new log file on the client node before the defined value of the MaxLogFileSize parameter is reached
rollOverLogServer Forces the creation of a new log file on the server node before the defined value of the MaxLogFileSize parameter is reached
trace Conditionally outputs a message without flushing the output buffer (executed on the local, or current, node)
traceClient Conditionally outputs a message without flushing the output buffer (executed on the client node)
traceDump Conditionally outputs a binary block without flushing the output buffer (executed on the local, or current, node)
traceDumpClient Conditionally outputs a binary block without flushing the output buffer (executed on the client node)
traceDumpServer Conditionally outputs a binary block without flushing the output buffer (executed on the server node)
traceServer Conditionally outputs a message without flushing the output buffer (executed on the server node)

By default, JadeLog class methods are executed on the local, or current, node.