我对Cloud Foundry的Slim配置有疑问。 我使用的是最新的构建包版本和' nginx'对于我的应用程序。
$_ENV['SLIM_MODE'] = 'development';
//Slim App Instance
$app = new \Slim\Slim();
$app->configureMode('development', function () use ($app) {
$app->config(array(
'log.enable' => true,
'log.level' => \Slim\Log::DEBUG,
'debug' => true
));
});
$app->group('/v1', function () use ($app) {
$app->get('/hello/:name', function ($name) use ($app) {
$app->getLog()->info('###Some text###');
$response = $app->response();
$response['Content-Type'] = 'application/json';
$response->status(201);
$response->body(json_encode(['hello' => $name]));
});
});
无法在Cloud Foundry日志中看到以下文本。 我错过了什么吗?