Era.ServerApi.ServerApiConfigurationRequest_ServerApiLogging
Description
Message for ServerApi logging.
Properties
Name |
JsonSchemaType |
Description |
filepath |
string |
File path for logging. |
logLevel |
string |
Log level for ServerApi. Possible values: Trace, Debug, Information, Warning, Error, Fatal, Status. |
logType |
string |
Log type for ServerApi. Possible values: stdout, file, none. |
Dual message (request/response)
No dual message.Referenced in messages
Era.ServerApi.ServerApiConfigurationRequest
JsonSchema
{
"title": "Era.ServerApi.ServerApiConfigurationRequest_ServerApiLogging",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.ServerApi.ServerApiConfigurationRequest_ServerApiLogging"
],
"properties": {
"Era.ServerApi.ServerApiConfigurationRequest_ServerApiLogging": {
"$ref": "#/definitions/ServerApiConfigurationRequest_ServerApiLogging"
}
},
"definitions": {
"ServerApiConfigurationRequest_ServerApiLogging": {
"additionalProperties": false,
"required": [
"logType"
],
"type": "object",
"properties": {
"filepath": {
"type": "string"
},
"logLevel": {
"type": "string"
},
"logType": {
"type": "string"
}
}
}
}
}