docs: update logger example for action modules (#8813)
Some checks are pending
ZITADEL CI/CD / core (push) Waiting to run
ZITADEL CI/CD / console (push) Waiting to run
ZITADEL CI/CD / version (push) Waiting to run
ZITADEL CI/CD / compile (push) Blocked by required conditions
ZITADEL CI/CD / core-unit-test (push) Blocked by required conditions
ZITADEL CI/CD / core-integration-test (push) Blocked by required conditions
ZITADEL CI/CD / lint (push) Blocked by required conditions
ZITADEL CI/CD / container (push) Blocked by required conditions
ZITADEL CI/CD / e2e (push) Blocked by required conditions
ZITADEL CI/CD / release (push) Blocked by required conditions

# Which Problems Are Solved

Updated the example to fit with the actual logger signature. Solves
#8811.
This commit is contained in:
karatekaneen 2024-10-23 07:40:43 +02:00 committed by GitHub
parent 70449caafb
commit d696d15a1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ Use the function that reflects your log level.
### Example
```js
logger.info("This is an info log.")
logger.log("This is an info log.")
logger.warn("This is a warn log.")