Skip to content

Commit

Permalink
FFM-10837 Add docs for anon target
Browse files Browse the repository at this point in the history
  • Loading branch information
erdirowlands committed Mar 13, 2024
1 parent c0b8f37 commit 99e1d23
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/further_reading.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ You can pass the configuration in as options when the SDK client is created.
| pollInterval | with_poll_interval(120) | When running in stream mode, the interval in seconds that we poll for changes. | 60 |
| maxAuthRetries | with_max_auth_retries(10) | The number of retry attempts to make if client authentication fails on a retryable HTTP error | 10 |

# Anonymous Target

If you do not want a `Target` to be sent to the Harness servers, you can use the `anonymous` attribute.

```python
target = Target(identifier='my_identifier', name='my_name', anonymous=True)
```


## Logging Configuration
The SDK provides a logger that wraps the standard python logging package. You can import and use it with:
```python
Expand Down

0 comments on commit 99e1d23

Please sign in to comment.