# wandb_tracing_enabled

> **Function** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/callbacks/manager/wandb_tracing_enabled)

Get the WandbTracer in a context manager.

## Signature

```python
wandb_tracing_enabled(
    session_name: str = 'default',
) -> Generator[None, None, None]
```

## Description

**Example:**

>>> with wandb_tracing_enabled() as session:
...     # Use the WandbTracer session

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `session_name` | `str` | No | The name of the session. Defaults to "default". (default: `'default'`) |

## Returns

`None`

None

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/a6a6079511ac8a5c1293337f88096b8641562e77/libs/community/langchain_community/callbacks/manager.py#L84)