Skip to content

Commit

Permalink
Add log config for services (#3677)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcvella authored Nov 18, 2024
1 parent 6927777 commit ffc2ce5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/configure/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,13 @@ You must configure a service with a `name` and a `type`:
- `name`: serves as an identifier when accessing the resource from your code, as well as when configuring other resources that are dependent on that resource.
You can accept the suggested default name when creating a service or choose a choose any unique name for a service.
The name must start with a letter or number and can only contain letters, numbers, dashes, and underscores with a max length of 60.
- `log_configuration`: Specify the log level for a resource. The default log level is `"Info"`. For example:

```json
"log_configuration": {
"level": "Debug"
}
```

The other aspects of configuring a service are highly specific to the type of service, review the docs for the service you are interested in:

Expand Down

0 comments on commit ffc2ce5

Please sign in to comment.