LogParams Class Documentation
classLogParamsNamespace:com::datalogics::PDFL
Detailed Description
Defines the parameters for writing error messages to a log file. The messages include the date and time, the source of the error, and the error type: debug, info, warning, error, or fatal. This class also defines the log file name and path.
Referenced by
Constructor & Destructor Documentation
LogParams
LogParams()LogParams constructor which allows to create LogParams instance. The LogParams object contains all settings required for logging. The log output, log file name and log string format can be configured with it.
Member Function Documentation
DisposeChildren
voidDisposeChildren()Returns:
void[static initializer]
static void[static initializer]()delete
synchronized voiddelete(Booleandisposing)Parameters
disposing: Boolean
Returns:
synchronized voiddelete
synchronized voiddelete()Returns:
synchronized voidfinalize
voidfinalize()Returns:
voidgetLogFileName
StringgetLogFileName()Returns:
Path to the file to write the log to.Gets the path to the file to write the log to.
getLogFormat
StringgetLogFormat()Returns:
string Log record format.Gets log format string.The string which allows to write the log in a custom format. NOTE: PDFL supports the following markers to form output string:
"%d" - current date (mmddyyyy). Example: 07292013 "%t" - current time (hhmmss). Example: 121311 "%s" - error source. Example: "DLFramework" "%e" - error type. It can be debug, info, warning, error, fatal. The value which will be output within this marker depends on severity value. It always outputs "error" string.
"%m" - error message. Example: "Exception: InExistent.pdf: This file cannot be found. Error number: 1074397201" "%T" - full date. It contains current date, current time and the timezone (yyyy-mm-ddThh:mm:ss+/-hh:mm). Example: 2013-07-29T12:13:11+03:00
By default "%T | %s | %e | %m" string format is used.
getLogOutputFlags
java.util.EnumSet< LogOutputFlags >getLogOutputFlags()Returns:
currently used flags.Gets LogOutputFlags. Supported types of logging are: console, file and Event Log (for Windows only). The outputs can be mixed by ORing corresponding flags. It is also possible to suppress any logging using LogOutputFlags.None.
setLogFileName
voidsetLogFileName(StringlogFileName)Parameters
logFileName: StringPath to the file to write the log to.
Returns:
voidSets file name to write the log to. NOTE: Ignored if LogOuputFlag.File flag is not set.
setLogFormat
voidsetLogFormat(StringlogFormat)Parameters
logFormat: Stringstring Log record format.
Returns:
voidSets log format string.The string which allows to write the log in a custom format. NOTE: PDFL supports the following markers to form output string:
"%d" - current date (mmddyyyy). Example: 07292013 "%t" - current time (hhmmss). Example: 121311 "%s" - error source. Example: "DLFramework" "%e" - error type. It can be debug, info, warning, error, fatal. The value which will be output within this marker depends on severity value. Currently it always outputs "error" string.
"%m" - error message. Example: "Exception: InExistent.pdf: This file cannot be found. Error number: 1074397201" "%T" - full date. It contains current date, current time and the timezone (yyyy-mm-ddThh:mm:ss+/-hh:mm). Example: 2013-07-29T12:13:11+03:00
By default "%T | %s | %e | %m" string format is used.
setLogOutputFlags
voidsetLogOutputFlags(java.util.EnumSet< LogOutputFlags >logOutputFlags)Parameters
logOutputFlags: java.util.EnumSet< LogOutputFlags >the flags containing outputs to write the log to.
Returns:
voidSets LogOutputFlags.Allows to specify where to put DLE's log. Supported types of logging are: console, file and Event Log (for Windows only). The outputs can be mixed by ORing corresponding flags. It is also possible to suppress any logging using LogOutputFlags.None.