---
title: LoggerFunction
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.2/packages/logger-middleware/src/lib/logger.ts#L12
---

# LoggerFunction

## Summary

Writes a log message.

## Signature

```ts
interface LoggerFunction {
  (message: string): void;
}

```