Exemplo n.º 1
0
 /**
  * Dynamically pass log calls into the writer.
  *
  * @param string $level
  * @param string $message
  * @param array $context
  * @return void 
  * @static 
  */
 public static function write($level, $message, $context = array())
 {
     \Illuminate\Log\Writer::write($level, $message, $context);
 }
Exemplo n.º 2
0
 /**
  * Dynamically pass log calls into the writer.
  *
  * @param mixed  (level, param, param)
  * @return mixed 
  * @static 
  */
 public static function write()
 {
     return \Illuminate\Log\Writer::write();
 }