blob: dcfcdda1bc69587e4d3a95e90ddb9923e4ba6441 [file] [log] [blame]
package KorAP::Log;
use Mojo::Base -base;
use Carp;
has 'warn' => sub {};
has 'debug' => sub {};
has 'trace' => sub {};
sub error {
shift;
carp(join ' ', @_);
};
1;