function($limit = 100, $start = 0)
{
$res = [];
foreach ( $logs as $log ){
array_push($res, [
'action' => $this->translateLog($log),
'id_user' => $log['id_user'],
'chrono' => $log['chrono']
]);
}
return $res;
}