Class RestLogger
java.lang.Object
org.operaton.commons.logging.BaseLogger
org.operaton.bpm.engine.rest.impl.RestLogger
- Direct Known Subclasses:
AuthLogger
The `RestLogger` class is a specialized logger for the REST module of Operaton.
It extends the
BaseLogger class and serves as a base for other loggers in the REST module.
This class is sealed, meaning only the specified permitted subclasses can extend it.
Currently, the only permitted subclass is AuthLogger.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final AuthLoggerA static instance of the `AuthLogger` class, used for logging authentication-related events.static final StringThe project code used for logging purposes.Fields inherited from class org.operaton.commons.logging.BaseLogger
componentId, delegateLogger, projectCode -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.operaton.commons.logging.BaseLogger
createLogger, exceptionMessage, formatMessageTemplate, isDebugEnabled, isErrorEnabled, isInfoEnabled, isTraceEnabled, isWarnEnabled, log, log, logDebug, logError, logInfo, logTrace, logWarn
-
Field Details
-
PROJECT_CODE
The project code used for logging purposes. This helps in identifying logs related to the "REST" project.- See Also:
-
AUTH_LOGGER
A static instance of the `AuthLogger` class, used for logging authentication-related events. It is initialized with the project code, logger name, and a unique identifier.
-
-
Constructor Details
-
RestLogger
public RestLogger()
-