diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2021-03-30 03:53:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 09:53:02 +0100 |
commit | 0ee1c56ffd6910de9bd268df0333c0135c42bff3 (patch) | |
tree | 995099677a39e4d733e4cab9bbfcb40ce8aed8fe | |
parent | af41f6d4549759afd7f52f780b40abe2834ab4c0 (diff) |
Use log directory that we will be able to write to (#1799)
Fix https://github.com/matrix-org/dendrite/issues/1644
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | dendrite-config.yaml | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -19,6 +19,7 @@ /_test /vendor/bin /docker/build +/logs # Architecture specific extensions/prefixes *.[568vq] diff --git a/dendrite-config.yaml b/dendrite-config.yaml index 13564590..402987f9 100644 --- a/dendrite-config.yaml +++ b/dendrite-config.yaml @@ -383,4 +383,4 @@ logging: - type: file level: info params: - path: /var/log/dendrite + path: ./logs |