adutra commented on code in PR #977:
URL: https://github.com/apache/polaris/pull/977#discussion_r1965687367
##########
quarkus/server/build.gradle.kts:
##########
@@ -68,7 +68,12 @@ tasks.named("distTar") { dependsOn("quarkusBuild") }
tasks.register("run") { dependsOn("quarkusRun") }
tasks.named<QuarkusRun>("quarkusRun") {
- jvmArgs = listOf("-Dpolaris.bootstrap.credentials=POLARIS,root,secret")
+ jvmArgs =
+ listOf(
+ "-Dpolaris.bootstrap.credentials=POLARIS,root,secret",
+ "-Dquarkus.console.color=true",
+ "-Dquarkus.log.file.enable=false",
Review Comment:
Thanks all for the feedback, I am starting to wonder whether the cure is
worse than the disease, IOW, maybe the best thing to do here is to not do
anything.
Each developer can handle this in their own ways, e.g. by removing the log
files periodically as suggested by @flyrain, or by just appending
`-Dquarkus.log.file.enable=false` manually to `./gradlew run` (which is
probably what I would do).
So, if you all agree, let's just close this PR without merging it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]