property
 propertyDescription
 USE_LINE_NUMBERS If set to true true it will show the line numbers for the log statements. 
 USE_STACKTRACE If set to true, the simple api will try to evaluate the logger using the stacktrace. 
Functions
 FunctionDescription
 aTrace Subsitute for the native trace function.
 debug Logs a message for debug purposes to the DIRECT_LOGGER Debug messages should be messages that are additional output used to ease the debugging of an application. A message can contain place holders that are filled with the additional parameters.
 error Logs a message to notify about an error that was dodged by the application to the DIRECT_LOGGER The Error level is designated to be used in case an error occurred and the error could be dodged.
 fatal Logs a message to notify about an error that broke the application and couldn't be fixed automatically to the DIRECT_LOGGER.
 info Logs a message for notification purposes to the DIRECT_LOGGER.
 isDebugEnabled true if debug actually does something.
 isErrorEnabled true if error actually does something.
 isFatalEnabled true if fatal actually does something.
 isInfoEnabled true if info actually does something.
 isWarnEnabled true if warn actually does something.
 warn Logs a message for warning about a undesirable application state to the DIRECT_LOGGER.
Constants
 ConstantDescription
 DIRECT_LOGGER Default instance used in this package to log statements.