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