| Package | Description |
|---|---|
| org.glassfish.jersey.logging |
Logging feature provides the logging of requests and responses on server and client.
|
| Modifier and Type | Field and Description |
|---|---|
static LoggingFeature.Verbosity |
LoggingFeature.DEFAULT_VERBOSITY
Default verbosity for entity logging.
|
private LoggingFeature.Verbosity |
LoggingFeature.verbosity |
(package private) LoggingFeature.Verbosity |
LoggingInterceptor.verbosity |
| Modifier and Type | Method and Description |
|---|---|
static LoggingFeature.Verbosity |
LoggingFeature.Verbosity.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoggingFeature.Verbosity[] |
LoggingFeature.Verbosity.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
(package private) static boolean |
LoggingInterceptor.printEntity(LoggingFeature.Verbosity verbosity,
javax.ws.rs.core.MediaType mediaType)
Returns
true if entity has to be printed. |
| Constructor and Description |
|---|
ClientLoggingFilter(java.util.logging.Logger logger,
java.util.logging.Level level,
LoggingFeature.Verbosity verbosity,
int maxEntitySize)
Create a logging filter with custom logger and custom settings of entity
logging.
|
LoggingFeature(java.util.logging.Logger logger,
java.util.logging.Level level,
LoggingFeature.Verbosity verbosity,
java.lang.Integer maxEntitySize)
Creates the feature with custom logger, it's level, message verbosity and maximum number of bytes of entity to log.
|
LoggingFeature(java.util.logging.Logger logger,
LoggingFeature.Verbosity verbosity)
Creates the feature with custom logger and verbosity.
|
LoggingInterceptor(java.util.logging.Logger logger,
java.util.logging.Level level,
LoggingFeature.Verbosity verbosity,
int maxEntitySize)
Creates a logging filter with custom logger and entity logging turned on, but potentially limiting the size
of entity to be buffered and logged.
|
ServerLoggingFilter(java.util.logging.Logger logger,
java.util.logging.Level level,
LoggingFeature.Verbosity verbosity,
int maxEntitySize)
Create a logging filter with custom logger and custom settings of entity
logging.
|