/**
  * 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())
 {
     //Method inherited from \Illuminate\Log\Writer
     \App\Support\Log\Writer::write($level, $message, $context);
 }