# man > Log::Dispatch::Null(3pm)

---
type: CommandReference
command: Log::Dispatch::Null
mode: perldoc
section: 3pm
source: perldoc
---

## Quick Reference

- `Log::Dispatch->new( outputs => [ [ 'Null', min_level => 'debug' ] ] )` — Create a null logger that silently discards all messages.
- `$null->emerg( "message" )` — Any log level method call is accepted and ignored.

## Name

Log::Dispatch::Null — Object that accepts messages and does nothing.

## Synopsis

perl
use Log::Dispatch;

my $null
    = Log::Dispatch->new( outputs => [ [ 'Null', min_level => 'debug' ] ] );

$null->emerg( "I've fallen and I can't get up" );
## Options

None.

## See Also

- [Log::Dispatch](https://metacpan.org/pod/Log::Dispatch) — Parent logging dispatcher module.