/**
  * Outputs the benchamrks from Scaffold to Firebug
  *
  * @return void
  */
 public static function benchmark()
 {
     $system = Scaffold_Benchmark::get('system');
     $flags = Scaffold_Benchmark::get('system.flags');
     $check = Scaffold_Benchmark::get('system.check_files');
     $table = array();
     $table[] = array('Event', 'Time');
     # The benchmark values
     $table[] = array('Total Time', $system['time']);
     $table[] = array('Set Flags', $flags['time']);
     $table[] = array('Parse Files', $check['time']);
     FB::table('Benchmark', $table);
 }