- 追加された行はこの色です。
- 削除された行はこの色です。
- Perl/ログ/Sys-Syslog へ行く。
- Perl/ログ/Sys-Syslog の差分を削除
* Sys::Syslog [#hd8495c5] use Sys::Syslog; $program = $0; openlog "$program $$", 'ndelay', 'user'; # 'user'もしくはLOG_USER => facility syslog 'info', 'this is %s', ' a test message'; # 'info'もしくはLOG_INFO => level openlog "$program $$", 'ndelay', 'user'; # 'user'もしくはLOG_USER (ファシリティ) syslog 'info', 'this is %s', ' a test message'; # 'info'もしくはLOG_INFO (レベル) closelog; ** 参考 [#cd8b8f63] - http://search.cpan.org/perldoc?Sys::Syslog - ファシリティ・レベル http://search.cpan.org/perldoc?Sys::Syslog#CONSTANTS