chore(docs): custom and built-in event logging class at the same time (#20098)

* chore: custom and built-in event logging class at the same time

* fix whitespaces

* Update Event Logging docs
This commit is contained in:
wiktor2200 2022-07-12 07:30:44 +02:00 committed by GitHub
parent 7f918a4ec0
commit d4b59ff1ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -9,9 +9,11 @@ version: 1
### Event Logging
Superset by default logs special action events in its internal database. These logs can be accessed
Superset by default logs special action events in its internal database (DBEventLogger). These logs can be accessed
on the UI by navigating to **Security > Action Log**. You can freely customize these logs by
implementing your own event log class.
**When custom log class is enabled DBEventLogger is disabled and logs stop being populated in UI logs view.**
To achieve both, custom log class should extend built-in DBEventLogger log class.
Here's an example of a simple JSON-to-stdout class: