Folks,
is it possible to set log item severity per scribe? I’m running nessusio/cardano in container and would like to have info logging to stdout and debug logging to file.
I currently use these scribes with global debug severity
"setupScribes": [
{
"scFormat": "ScText",
"scKind": "StdoutSK",
"scName": "stdout"
},
{
"scFormat": "ScText",
"scKind": "FileSK",
"scName": "/opt/cardano/logs/debug.log",
"scRotation": {
"rpLogLimitBytes": 50000000,
"rpKeepFilesNum": 14,
"rpMaxAgeHours": 24
}
}
]
I tried “scMinSeverity”, but this does seem to have any effect. I also found this document, but no glue on how to configure logging to that effect.
cheers
– thomas