/**
  * Log a message to the logs.
  *
  * @param string $level
  * @param string $message
  * @param array $context
  * @return void 
  * @static 
  */
 public static function log($level, $message, $context = array())
 {
     //Method inherited from \Illuminate\Log\Writer
     \App\Support\Log\Writer::log($level, $message, $context);
 }