Skip to content

Commit

Permalink
Allow FileLoggerOptions for channels
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdnk committed Oct 24, 2024
1 parent a04c462 commit 1b34ec1
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
"err_output": {
"$ref": "#/$defs/LogOutput"
},
"file_logger_options": {
"$ref": "#/$defs/FileLoggerOptions"
},
"channels": {
"description": "You can configure logging for each plugin individually. The key is the plugin name and the value is logging options in same format as the parent.",
"type": "object",
Expand All @@ -48,11 +51,16 @@
},
"err_output": {
"$ref": "#/$defs/LogOutput"
},
"file_logger_options": {
"$ref": "#/$defs/FileLoggerOptions"
}
}
}
},
"file_logger_options": {
}
},
"$defs": {
"FileLoggerOptions": {
"description": "File logger options.",
"type": "object",
"additionalProperties": false,
Expand Down Expand Up @@ -85,9 +93,7 @@
"default": false
}
}
}
},
"$defs": {
},
"LogMode": {
"description": "Logging mode",
"type": "string",
Expand Down

0 comments on commit 1b34ec1

Please sign in to comment.