示例#1
0
文件: Log.php 项目: uglybob/bh.net
 public static function log($message)
 {
     $logEntry = new \Bh\Entity\LogEntry($message);
     Mapper::save($logEntry);
     Mapper::commit();
 }