Class MFP.Logger

MFP.Logger

Description:
Server-side API for logging. It contains these functions:
  • MFP.Logger.error
  • MFP.Logger.warning
  • MFP.Logger.info
  • MFP.Logger.debug

Method Summary
Method Attributes Method Name and Description
 
Writes a debug message to the server log.
 
Writes an error message to the server log.
 
Writes an info message to the server log.
 
Writes a warning message to the server log.
Method Detail
MFP.Logger.debug
MFP.Logger.debug(value)
Writes a debug message to the server log.
Parameters:
value - Mandatory. A string containing the message to be written to the log file.

MFP.Logger.error
MFP.Logger.error(value)
Writes an error message to the server log.
Parameters:
value - Mandatory. A string containing the message to be written to the log file.

MFP.Logger.info
MFP.Logger.info(value)
Writes an info message to the server log.
Parameters:
value - Mandatory. A string containing the message to be written to the log file.

MFP.Logger.warn
MFP.Logger.warn(value)
Writes a warning message to the server log.
Parameters:
value - Mandatory. A string containing the message to be written to the log file.

© Copyright IBM Corp. 2011, 2016.