Logger()

Sends data to the underlying Java Logger process. It will automatically pick up the context of where you are calling this from

Usage

BOOLEAN = Logger( msg, level )
Argument Summary
msg the message string to send to the logging
level the level of logging. Values can be: all, info, warning, fine, finer, config, off, servere, off [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Logger(
   msg=?, 
   level=?
);

Supports passing parameters as a structure using ArgumentCollection:

Logger( ArgumentCollection={
   msg : ?, 
   level : ?
} );