Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Dancer: Logging

package App;
use Dancer2;

set log => 'warning';

get '/' => sub {
    debug 'debug in main';
    info 'info in main';
    warning 'warning in main';
    error 'error in main';

    return 'Hello World!';
};

App->to_app;