# EventCatchableOptions

`interface` in `seedcord` · v0.12.0

<https://docs.seedcord.org/packages/seedcord/0.12.0/interfaces/event-catchable-options>

Configuration options for the EventCatchable decorator.

```ts
interface EventCatchableOptions
```

## Properties

### log

```ts
log: boolean;
```

Whether to log caught errors via the framework Logger 

### silent

```ts
silent: boolean | NonEmptyTuple<typeof CustomError>;
```

Whether to fail silently without trying to send a message .

Can pass a list of [`CustomError`](/packages/seedcord/0.12.0/classes/custom-error) types to only silence those specific errors.
