0

Is there any debugging tool to debug in neos. Because when i try to print output using print_r browser gets crashed and not able to debug at all.

Could you please suggest me?

Punith
  • 21
  • 6
  • You can use {variable} in template - it's more convenient in most cases. To use variable in template, remember to $this->view->assign('variable', $variable) in you action. – k.tarkin Oct 06 '14 at 13:46

1 Answers1

0

Neos's debugging tool is

\TYPO3\Flow\var_dump($var)

Desh
  • 175
  • 2
  • 10