It seems any Firebug output is lost if the controller redirects.
If I call actionTwo() here Firebug shows the output correctly:
public function actionIndex()
{
$this->render('index');
}
public function actionTwo()
{
Fire::log()->info('called in the actionTwo controller');
$this->render('index');
//$this->redirect(array('index'));
}
However, if I redirect to another action and call actionTwo():
public function actionIndex()
{
$this->render('index');
}
public function actionTwo()
{
Fire::log()->info('called in the actionTwo controller');
//$this->render('index');
$this->redirect(array('index'));
}
Firebug shows nothing. Why is this?