# recipes/logs/backend/modules/board/Boom.ts

One file of [`recipes/logs`](/docs/recipes/logs), at commit `9a5bb24`.

```ts
// board/Boom: a public call that throws, so a page can produce a failed server call on demand.

export default () => ({
	public: true,
	call: () => { throw Object.assign(new Error('the module blew up'), { reason: 'boom' }); },
});
```
