Update LOGGER_DRIVER env var description (#5968)

Update the docs to accurately reflect `LoggerDriverType`. Using `sentry`
throws an error on startup.

```
export enum LoggerDriverType {
  Console = 'console',
}
```

Happy to change the wording of course.
This commit is contained in:
JarWarren
2024-06-21 06:52:36 -06:00
committed by GitHub
parent 68e20c0e87
commit 51e3454d50

View File

@ -153,7 +153,7 @@ yarn command:prod cron:messaging:message-list-fetch
### Logging
<ArticleTable options={[
['LOGGER_DRIVER', 'console', "The logging driver can be: 'console' or 'sentry'"],
['LOGGER_DRIVER', 'console', "Currently, only supports 'console'"],
['LOGGER_IS_BUFFER_ENABLED', 'true', 'Buffer the logs before sending them to the logging driver'],
['LOG_LEVELS', 'error,warn', "The loglevels which are logged to the logging driver. Can include: 'log', 'warn', 'error'"],
['EXCEPTION_HANDLER_DRIVER', 'sentry', "The exception handler driver can be: 'console' or 'sentry'"],