Skip to content

Commit 2f83367

Browse files
authored
chore: update readme (#95)
Signed-off-by: Michael Beemer <[email protected]>
1 parent cce8368 commit 2f83367

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ coroutineScope.launch(Dispatchers.IO) {
7272
|| [Providers](#providers) | Integrate with a commercial, open source, or in-house feature management tool. |
7373
|| [Targeting](#targeting) | Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
7474
|| [Hooks](#hooks) | Add functionality to various stages of the flag evaluation life-cycle. |
75-
|| Logging | Integrate with popular logging packages. |
76-
|| Named clients | Utilize multiple providers in a single application. |
77-
| | [Eventing](#eventing) | React to state changes in the provider or flag management system. |
75+
|| [Logging](#logging) | Integrate with popular logging packages. |
76+
|| [Named clients](#named-clients) | Utilize multiple providers in a single application. |
77+
|| [Eventing](#eventing) | React to state changes in the provider or flag management system. |
7878
|| [Shutdown](#shutdown) | Gracefully clean up a provider during application shutdown. |
7979
| ⚠️ | [Extending](#extending) | Extend OpenFeature with custom providers and hooks. |
8080

@@ -130,6 +130,13 @@ client.addHooks(listOf(ExampleHook()))
130130
val retval = client.getBooleanValue(flagKey, false,
131131
FlagEvaluationOptions(listOf(ExampleHook())))
132132
```
133+
### Logging
134+
135+
Logging customization is not yet available in the Kotlin SDK.
136+
137+
### Named clients
138+
139+
Support for named clients is not yet available in the Kotlin SDK.
133140

134141
### Eventing
135142

0 commit comments

Comments
 (0)