Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
sub print_log { my $str = shift; my $logfile = "/path/to/debug.log"; my $msg = sprintf("%s\x0A", $str); open FH, ">> $logfile" or die "Can't open $logfile:$!"; print FH $msg; close FH; }
my $str = "Now debugging!"; print_log($str);