puoi anche fare tutto con un solo ciclo:

Codice PHP:
foreach ($records as $key => $value

 print 
$records[$key]['level']."
"
;

EDIT:

o se preferisci anche così:

Codice PHP:
foreach ($records as $key => $value

 print 
$value['level']."
"
;