logging.json 617 B

12345678910111213141516171819
  1. {
  2. "Serilog": {
  3. "MinimumLevel": "Information",
  4. "WriteTo": [
  5. { "Name": "Console",
  6. "Args": {
  7. "outputTemplate": "[{Timestamp:HH:mm:ss}] [{Level:u3}] {Message:lj}{NewLine}{Exception}"
  8. }
  9. },
  10. { "Name": "File",
  11. "Args": {
  12. "path": "%JELLYFIN_LOG_DIR%//log_.log",
  13. "rollingInterval": "Day",
  14. "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message}{NewLine}{Exception}"
  15. }
  16. }
  17. ]
  18. }
  19. }