Skip to content

Commit

Permalink
Cleanup examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion committed Oct 31, 2024
1 parent ccfad0a commit c584389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk/browser/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ export function initialize(clientSideId: string, options?: LDOptions): LDClient
* log output to go to `console.log`
* ```javascript
* const ldOptions = {
* logger: ld.basicLogger({ destination: console.log }),
* logger: basicLogger({ destination: console.log }),
* };
* ```
*
* * @example
* The configuration also allows you to control the destination for each log level.
* ```javascript
* const ldOptions = {
* logger: ld.basicLogger({
* logger: basicLogger({
* destination: {
* debug: console.debug,
* info: console.info,
Expand Down

0 comments on commit c584389

Please sign in to comment.