From 5f0c972f1fc13f52eb223852ad220a4e257ddb0a Mon Sep 17 00:00:00 2001 From: Romuald Lemesle Date: Wed, 4 Mar 2026 11:41:03 +0100 Subject: [PATCH] [docs] Fix default value for LOGGING_LEVEL_IO_OPENAEV The documentation listed `warn` as the default for LOGGING_LEVEL_IO_OPENAEV, but the actual source code in application.properties has `error`. Aligns documentation with the source of truth. --- docs/deployment/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/deployment/configuration.md b/docs/deployment/configuration.md index f5a645d6..843488c5 100644 --- a/docs/deployment/configuration.md +++ b/docs/deployment/configuration.md @@ -64,7 +64,7 @@ certificates in the folder are public PEM-armoured (*.pem), DER-encoded X509 cer | Parameter | Environment variable | Default value | Description | |:--------------------------------------------|:--------------------------------------------|:-------------------|:----------------------------------------------| | logging.level.root | LOGGING_LEVEL_ROOT | fatal | Root log level | -| logging.level.io.openaev | LOGGING_LEVEL_IO_OPENAEV | warn | OpenAEV log level | +| logging.level.io.openaev | LOGGING_LEVEL_IO_OPENAEV | error | OpenAEV log level | | logging.file.name | LOGGING_FILE_NAME | ./logs/openaev.log | Log file path (in addition to console output) | | logging.logback.rollingpolicy.max-file-size | LOGGING_LOGBACK_ROLLINGPOLICY_MAX-FILE-SIZE | 10MB | Rolling max file size | | logging.logback.rollingpolicy.max-history | LOGGING_LOGBACK_ROLLINGPOLICY_MAX-HISTORY | 7 | Rolling max days | @@ -110,7 +110,7 @@ certificates in the folder are public PEM-armoured (*.pem), DER-encoded X509 cer | engine.username | ENGINE_USERNAME | | This parameter is optional. Login for the database | | engine.password | ENGINE_PASSWORD | | This parameter is optional. Password for the database | -If you switch your engine selector, you’ll need to delete the `indexing_status` table in PostgreSQL to trigger a full +If you switch your engine selector, you'll need to delete the `indexing_status` table in PostgreSQL to trigger a full reindex. #### RabbitMQ @@ -250,4 +250,4 @@ required. You can find a guide [here](https://support.google.com/accounts/answer | ai.endpoint | AI_ENDPOINT | | Endpoint URL (empty means default cloud service) | | ai.token | AI_TOKEN | | Token for endpoint credentials | | ai.model | AI_MODEL | | Model to be used for text generation (depending on type) | -| ai.model_images | AI_MODEL_IMAGES | | Model to be used for image generation (depending on type) | +| ai.model_images | AI_MODEL_IMAGES | | Model to be used for image generation (depending on type) | \ No newline at end of file