We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is my logger xml.file
logger.root=ERROR logger.play=INFO logger.application=DEBUG
import sbt._ import Keys._ import play.Project._ import com.github.play2war.plugin._ object ApplicationBuild extends Build { val appName = "app" val appVersion = "1.0" val appDependencies = Seq( javaCore ) val main = play.Project(appName, appVersion, appDependencies).settings( Play2WarKeys.servletVersion := "3.0" ).settings(Play2WarPlugin.play2WarSettings: _*) }
The issue is, its still writing logs to $USER_HOME.
The text was updated successfully, but these errors were encountered:
Oh I am using 1.2-beta4
Sorry, something went wrong.
Wild guess, might have to do with this issue #179.
No branches or pull requests
Here is my logger xml.file
logger.root=ERROR
logger.play=INFO
logger.application=DEBUG
import sbt._
import Keys._
import play.Project._
import com.github.play2war.plugin._
object ApplicationBuild extends Build {
val appName = "app"
val appVersion = "1.0"
val appDependencies = Seq(
javaCore
)
val main = play.Project(appName, appVersion, appDependencies).settings(
Play2WarKeys.servletVersion := "3.0"
).settings(Play2WarPlugin.play2WarSettings: _*)
}
The issue is, its still writing logs to $USER_HOME.
The text was updated successfully, but these errors were encountered: