0
我使用記錄的變量值代入的debug.log:中的debug.log CakePHP的沒有堆棧跟蹤
$var = 'Hello World';
debugger::log($var);
在
我/app/tmp/logs/debug.log
有該日誌整個堆棧跟蹤:
2014-03-24 20:47:42 Debug:
UserController::create() - APP\Controller\UserController.php, line 21
ReflectionMethod::invokeArgs() - [internal], line ??
Controller::invokeAction() - CORE\Cake\Controller\Controller.php, line 490
Dispatcher::_invoke() - CORE\Cake\Routing\Dispatcher.php, line 185
Dispatcher::dispatch() - CORE\Cake\Routing\Dispatcher.php, line 160
[main] - APP\webroot\index.php, line 108
'Hello World'
我don' t需要stacktrace,只需要我的變量的值。
我認爲你正在使用的蛋糕調試器插件..你試過只是這個 - $>日誌($ VAR ); –
@Anand Ghaywankar聲明'$ this-> log($ var);'登錄到error.log。我想登錄到debug.log。 – Simon