[settings.json.template] Shrink things together a bit and consistently indent comments
parent
176a6c36d8
commit
5c03c039d1
|
@ -108,22 +108,18 @@
|
||||||
{ "type": "console"
|
{ "type": "console"
|
||||||
//, "category": "access"// only logs pad access
|
//, "category": "access"// only logs pad access
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
, { "type": "file"
|
, { "type": "file"
|
||||||
, "filename": "your-log-file-here.log"
|
, "filename": "your-log-file-here.log"
|
||||||
, "maxLogSize": 1024
|
, "maxLogSize": 1024
|
||||||
, "backups": 3 // how many log files there're gonna be at max
|
, "backups": 3 // how many log files there're gonna be at max
|
||||||
//, "category": "test" // only log a specific category
|
//, "category": "test" // only log a specific category
|
||||||
}*/
|
}*/
|
||||||
/*
|
/*
|
||||||
, { "type": "logLevelFilter"
|
, { "type": "logLevelFilter"
|
||||||
, "level": "warn" // filters out all log messages that have a lower level than "error"
|
, "level": "warn" // filters out all log messages that have a lower level than "error"
|
||||||
, "appender":
|
, "appender":
|
||||||
{ "type": "file"
|
{ /* Use whatever appender you want here */ }
|
||||||
, "filename": "your-log-file-here.log"
|
|
||||||
, "maxLogSize": 1024
|
|
||||||
, "backups": 1 // how many log files there're gonna be at max
|
|
||||||
}
|
|
||||||
}*/
|
}*/
|
||||||
/*
|
/*
|
||||||
, { "type": "logLevelFilter"
|
, { "type": "logLevelFilter"
|
||||||
|
@ -133,13 +129,11 @@
|
||||||
, "subject": "An error occured in your EPL instance!"
|
, "subject": "An error occured in your EPL instance!"
|
||||||
, "recipients": "bar@blurdybloop.com, baz@blurdybloop.com"
|
, "recipients": "bar@blurdybloop.com, baz@blurdybloop.com"
|
||||||
, "sendInterval": 60*5 // in secs -- will buffer log messages; set to 0 to send a mail for every message
|
, "sendInterval": 60*5 // in secs -- will buffer log messages; set to 0 to send a mail for every message
|
||||||
, "transport": "SMTP" // More available transports are documented here: https://github.com/andris9/Nodemailer#possible-transport-methods
|
, "transport": "SMTP", "SMTP": { // see https://github.com/andris9/Nodemailer#possible-transport-methods
|
||||||
, "SMTP": {
|
"host": "smtp.example.com", "port": 465,
|
||||||
"host": "smtp.gmail.com",
|
|
||||||
"secureConnection": true,
|
"secureConnection": true,
|
||||||
"port": 465,
|
|
||||||
"auth": {
|
"auth": {
|
||||||
"user": "foo@bar.com",
|
"user": "foo@example.com",
|
||||||
"pass": "bar_foo"
|
"pass": "bar_foo"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue