/**
  * Sets Report level
  * @param integer $index Report level to set
  */
 public static function setReportLevel($index)
 {
     if ($index >= 0 && $index < count(self::$severities))
     {
         self::$reportLevel = intval($index);
     }
 }