/**
  * Register a new callback handler for when a log event is triggered.
  *
  * @param \Closure $callback
  * @return void 
  * @throws \RuntimeException
  * @static 
  */
 public static function listen($callback)
 {
     //Method inherited from \Illuminate\Log\Writer
     \App\Support\Log\Writer::listen($callback);
 }