src.nth.io/

summaryrefslogtreecommitdiff
path: root/matrix-synapse/templates/log.yaml.j2
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-08-01 15:33:24 -0500
committerLuke Hoersten <[email protected]>2020-08-01 15:33:24 -0500
commit4445a92abe844121bfa849de35c9b5959e669f43 (patch)
tree8a86e9dfabbca4b244c801a95cc8399856a385fb /matrix-synapse/templates/log.yaml.j2
parent4d80a3ac95add9a4513b02ac4e4e1c5402c57cbc (diff)
Deleted vestigal matrix pihole and jellyfin roles.
Diffstat (limited to 'matrix-synapse/templates/log.yaml.j2')
-rw-r--r--matrix-synapse/templates/log.yaml.j256
1 files changed, 0 insertions, 56 deletions
diff --git a/matrix-synapse/templates/log.yaml.j2 b/matrix-synapse/templates/log.yaml.j2
deleted file mode 100644
index 51aba22..0000000
--- a/matrix-synapse/templates/log.yaml.j2
+++ /dev/null
@@ -1,56 +0,0 @@
-
-version: 1
-
-formatters:
- precise:
- format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s- %(message)s'
- journal_fmt:
- format: '%(name)s: [%(request)s] %(message)s'
-
-filters:
- context:
- (): synapse.util.logcontext.LoggingContextFilter
- request: ""
-
-handlers:
- file:
- class: logging.handlers.WatchedFileHandler
- formatter: precise
- filename: /var/log/matrix-synapse/homeserver.log
- filters: [context]
- level: ERROR
- encoding: utf8
- console:
- class: logging.StreamHandler
- formatter: precise
- level: ERROR
- journal:
- class: systemd.journal.JournalHandler
- formatter: journal_fmt
- filters: [context]
- SYSLOG_IDENTIFIER: synapse
-
-loggers:
- twisted:
- level: ERROR
-
- synapse:
- level: ERROR
-
- # the following levels are more verbose than most users want
- # set them to INFO if you need more logging
- synapse.metrics:
- level: ERROR
-
- synapse.http.federation.well_known_resolver:
- level: ERROR
-
- synapse.storage.TIME:
- level: ERROR
-
- synapse.http.matrixfederationclient:
- level: ERROR
-
-root:
- level: ERROR
- handlers: [journal]