aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-07-16 20:09:42 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-07-16 22:09:30 +0200
commite9dace0e22a2aa3727bc842a30b4ad504029c0fc (patch)
treef406ec377baa132f68233c0d7223fd6f839a8912 /README.md
parent0cb9a462945b1a9dd30979e9b97415dff16816e0 (diff)
downloadlibquotient-e9dace0e22a2aa3727bc842a30b4ad504029c0fc.tar.gz
libquotient-e9dace0e22a2aa3727bc842a30b4ad504029c0fc.zip
Log thumbnail requests in their own category
As pointed out by one of users, thumbnail requests produce quite a bit of logging traffic, so it's better to manage them separately.
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index c993c31e..d5aae543 100644
--- a/README.md
+++ b/README.md
@@ -196,11 +196,11 @@ libQuotient uses Qt's logging categories to make switching certain types of logg
quotient.<category>.<level>=<flag>
```
where
-- `<category>` is one of: `main`, `jobs`, `jobs.sync`, `events`, `events.state`
- (covering both the "usual" room state and account data), `events.messages`,
- `events.ephemeral`, `e2ee` and `profiler` (you can always find the full list
- in `lib/logging.cpp`)
-- `<level>` is one of `debug`, `info`, and `warning`
+- `<category>` is one of: `main`, `jobs`, `jobs.sync`, `jobs.thumbnail`,
+ `events`, `events.state` (covering both the "usual" room state and account
+ data), `events.messages`, `events.ephemeral`, `e2ee` and `profiler` (you can
+ always find the full list in `lib/logging.cpp`);
+- `<level>` is one of `debug`, `info`, and `warning`;
- `<flag>` is either `true` or `false`.
`*` can be used as a wildcard for any part between two dots, and semicolon is used for a separator. Latter statements override former ones, so if you want to switch on all debug logs except `jobs` you can set