|
Options |
Name |
Purpose |
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Append (logical)
|
/** Indicates whether to append to the log
@param character The filename to write to
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Build (character)
|
/** Returns log writer build for a logging type
@param character The Filter type for which to build the logger
@return LogFilterBuilder The entity writer builder to use */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Build (character, BuilderRegistry)
|
/** Returns log writer build for a logging type.
To find a filter builder,
i. Look in the registry for the filter type. If not found,
ii. Look for the default ('*') builder in the registry. If not found,
iii. Use this type (LogFilterBuilder)
@param character The Filter type for which to build the logger
@param BuilderRegistry A registry of Filter writers to user
@return LogFilterBuilder The entity writer builder to use */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Build (Class)
|
/** Returns log writer build for a logging type
@param P.L.Class The Filter type for which to build the logger
@return LogFilterBuilder The entity writer builder to use */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder FormatAs (character)
|
/** Sets a format string for a filter
@param character The filename to write to
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder FromRegistry (BuilderRegistry)
|
/** Sets the logging level for the logger
@param BuilderRegistry The registry containing the map of log writers
@return LogFilterBuilder This builder object. */
|
|
|
Progress.Lang.Class GetFilterType (character)
|
/** Returns a filter writer from a registry; either the optional one set via loggerFilterRegistry or
the default LoggerFilterRegistry:Registry. It's the caller's responsibility to invoke and
use the filter type returned.
@param character The filter type name
@return Progress.Lang.Class The type of the filter writer. */
|
|
|
OpenEdge.Logging.Filter.ILoggerFilter NewFilter ()
|
/* Creates the instance.
@return ILoggerFilter A filter instance */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, character)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param character The value of the option (can be anything)
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, decimal)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param decimal The value of the option (can be anything)
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, int64)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param int64 The value of the option (can be anything)
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, logical)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param logical The value of the option (can be anything)
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, Object)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param Object The value of the option (can be anything)
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Options (JsonObject)
|
/** Adds or overwrites an option for the logger filter.
@param JsonObject The Filter options (can be anything)
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (character)
|
/** Sets the output destination
@param character The filename to write to
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (FileOutputStream)
|
/** Sets the output destination
@param FileOutputStream The filename to write to
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (JsonArray)
|
/** Sets the output destination
@param JsonArray The object to write into to
@return LogFilterBuilder This builder object. */
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (OutputStream)
|
/** Sets the output destination
@param OutputStream The filename to write to
@return LogFilterBuilder This builder object. */
|