ログ

モードの指定

ウェブアプリケーション起動時

 MOJO_MODE=debug1 plackup ./script/myapp
  • 上記の場合ログファイルはlog/debug1.logになる。
  • モード未指定の場合はdevelopment。

ログ書き込み

 package MyApp;
 
 use strict;
 use warnings;
 use utf8;
 use base 'Mojolicious';
 sub startup {
    my $self = shift;
    $self->log->error('test1');
 }

ログファイルに"test1"と書き込まれる。


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS