Tested and fixed adjustments

This commit is contained in:
ThaumRystra
2023-11-17 17:34:48 +02:00
parent 95c3e882d7
commit 59a9433dc7
3 changed files with 193 additions and 78 deletions

View File

@@ -22,11 +22,16 @@ let LogContentSchema = new SimpleSchema({
type: Boolean,
optional: true,
},
// This log entry was silenced
silenced: {
type: Boolean,
optional: true,
},
context: {
type: Object,
optional: true,
},
'context.errors':{
'context.errors': {
type: Array,
defaultValue: [],
maxCount: STORAGE_LIMITS.errorCount,