aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Korte <github@aaronkorte.xyz>2025-11-23 16:23:26 +0100
committerGitHub <noreply@github.com>2025-11-23 15:23:26 +0000
commit6912d0dd4e399bf59a080fd84f118f6185758e3a (patch)
tree8ff5362325600bbacea5f4580330141d23d53ef4
parent9fedfc15aa8b2b3f518311490fb0c37156fd3518 (diff)
downloadkarakeep-6912d0dd4e399bf59a080fd84f118f6185758e3a.tar.zst
docs: Add LOG_LEVEL to configuration documentation (#2166)
* Add LOG_LEVEL to configuration options Added LOG_LEVEL configuration option for application logging. * Add missing trailing pipe
-rw-r--r--docs/docs/03-configuration.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/docs/03-configuration.md b/docs/docs/03-configuration.md
index 6f1fe7cf..0975f1a7 100644
--- a/docs/docs/03-configuration.md
+++ b/docs/docs/03-configuration.md
@@ -9,6 +9,7 @@ The app is mainly configured by environment variables. All the used environment
| WORKERS_HOST | No | 127.0.0.1 | Host to listen to for requests to WORKERS_PORT. You will need to set this if running in a container, since localhost will not be reachable from outside |
| WORKERS_ENABLED_WORKERS | No | Not set | Comma separated list of worker names to enable. If set, only these workers will run. Valid values: crawler,inference,search,adminMaintenance,video,feed,assetPreprocessing,webhook,ruleEngine. |
| WORKERS_DISABLED_WORKERS | No | Not set | Comma separated list of worker names to disable. Takes precedence over `WORKERS_ENABLED_WORKERS`. |
+| LOG_LEVEL | No | debug | The application log level as defined in the [winston documentation](https://github.com/winstonjs/winston?tab=readme-ov-file#logging-levels). You may want to set this to `notice` or `warning` when running Karakeep in a production environment. |
| DATA_DIR | Yes | Not set | The path for the persistent data directory. This is where the db lives. Assets are stored here by default unless `ASSETS_DIR` is set. |
| ASSETS_DIR | No | Not set | The path where crawled assets will be stored. If not set, defaults to `${DATA_DIR}/assets`. |
| NEXTAUTH_URL | Yes | Not set | Should point to the address of your server. The app will function without it, but will redirect you to wrong addresses on signout for example. |