aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Boniface <joshua@boniface.me>2019-01-05 23:42:00 -0500
committerJoshua Boniface <joshua@boniface.me>2019-01-05 23:42:00 -0500
commit4e8149bc86b524f59d60fbe2e207427963a694ee (patch)
treeeb77396f96d62312467c5b1c7468a997ac797146
parent177c4835a5403d47eab10cf597694d8f2567f25f (diff)
Update logging for async mode from #438
-rw-r--r--debian/conf/logging.json20
1 files changed, 14 insertions, 6 deletions
diff --git a/debian/conf/logging.json b/debian/conf/logging.json
index 2ebe5655f..5d98484cd 100644
--- a/debian/conf/logging.json
+++ b/debian/conf/logging.json
@@ -7,13 +7,21 @@
"outputTemplate": "[{Timestamp:HH:mm:ss}] [{Level:u3}] {Message:lj}{NewLine}{Exception}"
}
},
- { "Name": "File",
+ {
+ "Name": "Async",
"Args": {
- "path": "%JELLYFIN_LOG_DIR%//jellyfin.log",
- "fileSizeLimitBytes": 10485700,
- "rollOnFileSizeLimit": true,
- "retainedFileCountLimit": 10,
- "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message}{NewLine}{Exception}"
+ "configure": [
+ {
+ "Name": "File",
+ "Args": {
+ "path": "%JELLYFIN_LOG_DIR%//jellyfin.log",
+ "fileSizeLimitBytes": 10485700,
+ "rollOnFileSizeLimit": true,
+ "retainedFileCountLimit": 10,
+ "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message}{NewLine}{Exception}"
+ }
+ }
+ ]
}
}
]