IBM WebSphere · Schema
LoggingConfig
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| logDirectory | string | Log output directory |
| consoleLogLevel | string | |
| messageFileName | string | Name of the messages log file |
| traceFileName | string | Name of the trace log file |
| traceSpecification | string | Trace specification string |
| maxFileSize | integer | Maximum log file size in MB |
| maxFiles | integer | Maximum number of log files |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LoggingConfig",
"type": "object",
"properties": {
"logDirectory": {
"type": "string",
"description": "Log output directory"
},
"consoleLogLevel": {
"type": "string"
},
"messageFileName": {
"type": "string",
"description": "Name of the messages log file"
},
"traceFileName": {
"type": "string",
"description": "Name of the trace log file"
},
"traceSpecification": {
"type": "string",
"description": "Trace specification string"
},
"maxFileSize": {
"type": "integer",
"description": "Maximum log file size in MB"
},
"maxFiles": {
"type": "integer",
"description": "Maximum number of log files"
}
}
}