所以我有一个 Laravel 控制器:
class YeahMyController extends BaseController {
public function getSomething() {
Console::info('mymessage'); // <-- what do I put here?
return 'yeahoutputthistotheresponse';
}
}
目前,我正在使用 artian 运行这个应用程序(它在底层运行 PHP 内置的开发 Web 服务器) :
php artisan serve
我希望将控制台消息记录到工匠流程的 STDOUT
管道中。