jellyfin/MediaBrowser.Server.Mono/Resources/Configuration/logging.json

20 lines
617 B
JSON
Raw Normal View History

2018-12-14 21:07:28 +00:00
{
"Serilog": {
"MinimumLevel": "Information",
"WriteTo": [
{ "Name": "Console",
"Args": {
2018-12-14 22:34:53 +00:00
"outputTemplate": "[{Timestamp:HH:mm:ss}] [{Level:u3}] {Message:lj}{NewLine}{Exception}"
2018-12-14 21:07:28 +00:00
}
},
{ "Name": "File",
"Args": {
2018-12-14 22:34:53 +00:00
"path": "%JELLYFIN_LOG_DIR%//log_.log",
2018-12-14 21:07:28 +00:00
"rollingInterval": "Day",
"outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message}{NewLine}{Exception}"
}
}
]
}
}