jellyfin/MediaBrowser.Server.Mono/Resources/Configuration/logging.json
2018-12-30 22:44:38 +01:00

20 lines
600 B
JSON

{
"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}"
}
}
]
}
}