[API reference](https://evolu.dev/docs/api-reference) › [@evolu/common](https://evolu.dev/docs/api-reference/common) › [Console](https://evolu.dev/docs/api-reference/common/Console) › createNativeConsoleOutput

```ts
function createNativeConsoleOutput(): ConsoleOutput;
```

Defined in: [packages/common/src/Console.ts:438](https://github.com/evoluhq/evolu/blob/e7144e2bbe9069362b62dec1b64a8aa922b8f1b0/packages/common/src/Console.ts#L438)

Creates a [ConsoleOutput](https://evolu.dev/docs/api-reference/common/Console/interfaces/ConsoleOutput) that writes to `globalThis.console`.

Pure transport - just calls the native console method with the entry args.
Use [createConsoleFormatter](https://evolu.dev/docs/api-reference/common/Console/functions/createConsoleFormatter) with [ConsoleConfig.formatter](https://evolu.dev/docs/api-reference/common/Console/interfaces/ConsoleConfig#formatter) for
timestamps and path prefixes.

### Example

```ts
const output = createNativeConsoleOutput();
```