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

20 lines
600 B
JSON
Raw Normal View History

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