Skip to content

Commit

Permalink
More logging properties
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK committed Dec 14, 2020
1 parent bd23c42 commit 7328958
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions src/schemas/json/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -287,14 +287,32 @@
"$ref": "#/definitions/logLevel"
},
"FormatterName": {
"description": "",
"type": "string"
"description": "Name of the log message formatter to use. Defaults to 'simple'.",
"type": "string",
"default": "simple"
},
"FormatterOptions": {
"description": "",
"type": "object"
"description": "Options for the console formatter. The formatter is selected by FormatterName. Additional properties are available depending on the selected formatter.",
"type": "object",
"properties": {
"IncludeScopes": {
"description": "Include scopes when true. Defaults to false.",
"type": "boolean",
"default": false
},
"TimestampFormat": {
"description": "Format string used to format timestamp in logging messages. Defaults to null.",
"type": "string"
},
"UseUtcTimestamp": {
"description": "Indication whether or not UTC timezone should be used to for timestamps in logging messages. Defaults to false.",
"type": "boolean",
"default": false
}
}
},
"LogToStandardErrorThreshold": {
"description": "The minimum level of messages are written to Console.Error.",
"$ref": "#/definitions/logLevelThreshold"
}
}
Expand Down

0 comments on commit 7328958

Please sign in to comment.