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

# SDKLogger

> Logger interface that consumers can implement to replace the built-in logger.

Logger interface that consumers can implement to replace the built-in logger.
All methods accept variadic arguments matching the browser console API.

## **Methods**

### debug()

```ts
debug(...args): void
```

#### Parameters

Variadic log arguments.

#### Returns

`void`

***

### error()

```ts
error(...args): void
```

#### Parameters

Variadic log arguments.

#### Returns

`void`

***

### info()

```ts
info(...args): void
```

#### Parameters

Variadic log arguments.

#### Returns

`void`

***

### trace()

```ts
trace(...args): void
```

#### Parameters

Variadic log arguments.

#### Returns

`void`

***

### warn()

```ts
warn(...args): void
```

#### Parameters

Variadic log arguments.

#### Returns

`void`