tracy on remote server does not starts Tracy
- jannemec
- Member | 78
I have remote server where I need to use tracy and debugger – even if
I call \Tracy\Debugger::enable(\Tracy\Debugger::DEVELOPMENT, WWW_DIR .
‘/log’); the error goes to Error page and not to tracy debug – what can
be wrong? On the localhost everything goes correctly. Nette 2.4
JN
- David Matějka
- Moderator | 6445
Hi, by calling Debugger::enable(...)
you start just a Tracy in
development/debug mode, not the whole nette application.
For running your nette application in a debug mode, you have to place a line
$configurator->setDebugMode(true);
to your bootstrap before a line
$configurator->enableDebugger(...)