Mercurial > epgrec.yaz
view recLog.inc.php @ 149:5b192e94f49d
fix: 予約済み定数を使ってしまったミスを修正。エラーレベルに警告を追加
author | epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp> |
---|---|
date | Sat, 27 Mar 2010 16:04:54 +0900 |
parents | 9c5e597ef6c6 |
children | 64b60603d7df |
line wrap: on
line source
<?php define( "EPGREC_INFO" , 0 ); define( "EPGREC_WARN" , 1 ); define( "EPGREC_ERROR", 2 ); function reclog( $message , $level = EPGREC_INFO ) { try { $log = new DBRecord( LOG_TBL ); $log->logtime = date("Y-m-d H:i:s"); $log->level = $level; $log->message = $message; } catch( Exception $e ) { // } } ?>