我正在使用Play 2.3开发应用程序。
我需要将http.netty.log.wire设置为true,默认为播放文档中指定的false。
在下面的链接(最后一节)中,它说这个选项可用,但它也指定了#34;我们不能使用application.conf"指定这个。
https://www.playframework.com/documentation/2.3.x/ProductionConfiguration
如果我们无法在应用程序配置中指定它,我们如何指定它?
由于
答案 0 :(得分:0)
您需要在命令行中传递这些选项:
Template.playDetails.created = function () {
/* Catch removed documents and redirect client if happens */
Games.find({_id: gameId}).observe({
removed: function () {
console.log("Ooops game deleted !");
Alerts("The game was deleted by owner", "danger");
Router.go("playList");
}
});
};