このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 10 / 昨日: 0
総計: 471
- Dokuwiki.fl8.jp(3064)
- 13 CentOS6メール設定(60)
- FreeBSD カーネル再構築(58)
- 75 Proftpd(56)
- 01 Galera構築(52)
最近の更新
このページへのアクセス
今日: 10 / 昨日: 0
総計: 471
下記のような感じで、constructにLogを使ってみた。
そうするとconstructにLogを利用すると、他のコマンドでもログが出力されてしまう。。。(^^;
public function __construct()
{
parent::__construct();
try{
$this->class = basename(strtr(get_class($this), '\\', '/'));
$this->mess_head = $this->class;
Log::info($this->mess_head." START ");
}catch(Exception $e){
echo $e->getMessage();
}
}
public function __destruct()
{
Log::info($this->mess_head." END send:$this->count");
}
app/Http/Kernel.phpとapp/Console/Kernel.php のbootstrappers に
Illuminate\Foundation\Bootstrap\ConfigureLoggingの呼び出しがあり、共通のインスタンスが利用されているため。