add log config
This commit is contained in:
parent
cc5d43c7f8
commit
31a0b24428
@ -8,9 +8,7 @@ server_name: "{{getenv "SERVER_NAME"}}"
|
||||
pid_file: /var/lib/synapse/homeserver.pid
|
||||
|
||||
web_client: True
|
||||
|
||||
# The public-facing base URL for the client API (not including _matrix/...)
|
||||
# public_baseurl: https://example.com:8448/
|
||||
public_baseurl: https://{{getenv "SERVER_NAME"}}:8448/
|
||||
|
||||
soft_file_limit: 0
|
||||
|
||||
|
35
rootfs/var/lib/synapse/lib/log.config
Normal file
35
rootfs/var/lib/synapse/lib/log.config
Normal file
@ -0,0 +1,35 @@
|
||||
version: 1
|
||||
|
||||
formatters:
|
||||
precise:
|
||||
format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s- %(message)s'
|
||||
|
||||
filters:
|
||||
context:
|
||||
(): synapse.util.logcontext.LoggingContextFilter
|
||||
request: ""
|
||||
|
||||
handlers:
|
||||
file:
|
||||
class: logging.handlers.RotatingFileHandler
|
||||
formatter: precise
|
||||
filename: /homeserver.log
|
||||
maxBytes: 104857600
|
||||
backupCount: 10
|
||||
filters: [context]
|
||||
level: INFO
|
||||
console:
|
||||
class: logging.StreamHandler
|
||||
formatter: precise
|
||||
|
||||
loggers:
|
||||
synapse:
|
||||
level: INFO
|
||||
|
||||
synapse.storage.SQL:
|
||||
level: INFO
|
||||
|
||||
root:
|
||||
level: INFO
|
||||
handlers: [file, console]
|
||||
|
Loading…
Reference in New Issue
Block a user