https://man7.org/linux/man-pages/man5/sysctl.conf.5.html
endpoint = localhost:3000
debug = true
log.file = /var/log/console.log
endpoint = localhost:3000
# debug = true
log.file = /var/log/console.log
log.name = default.log
(※) わかりやすさのために出力例をJson形式で書いていますが、Json形式で出力する必要はありません。
{
"endpoint": "localhost:3000",
"debug": "true",
"log": {
"file": "/var/log/console.log"
}
}
{
"endpoint": "localhost:3000",
"log": {
"file": "/var/log/console.log",
"name": "default.log",
}
}