i have the below Code in Symfony2 Controller Action. how can i debug this Values.
$log = $this->get('session')->get('hoursTransferred'); $hoursTrasfered = $log['hoursToTransfer'];
You can use the Symfony VarDumper Component:
dump($log);