> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# getLogger

> Returns the current SDK logger instance.

```ts
getLogger(): InternalSDKLogger
```

Returns the SDK's current logger. Useful when a host application wants to attach its own transport (e.g. a remote log sink) without replacing the entire logger via [`setLogger`](/docs/browser-sdk/v4/reference/functions/set-logger).

## **Returns**

The active logger instance (the built-in one, unless [`setLogger`](/docs/browser-sdk/v4/reference/functions/set-logger) has been called).

## **Examples**

```ts
import { getLogger } from '@signalwire/js';

const logger = getLogger();
logger.info('app ready');
```