Skip to content

Instantly share code, notes, and snippets.

@mpapec
Created June 17, 2016 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpapec/5da2c60f5427da016023c3c105148f15 to your computer and use it in GitHub Desktop.
Save mpapec/5da2c60f5427da016023c3c105148f15 to your computer and use it in GitHub Desktop.
sub log {
my ($c) = @_;
state $LOG;
if (!$LOG) {
$LOG = Mojo::Log->new(
path => "/tmp/my.log",
level => "debug"
);
$c->app->log($LOG);
}
return $LOG;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment