Skip to content

Commit

Permalink
chore: Quiet down logspam
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Sep 6, 2024
1 parent d7c08af commit 08bf5f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ tasks {
// the kotlin plugin creates this task super late for some reason?
configureEach {
if (name == "jvmRun" && isDevelopment()) {
(this as JavaExec).jvmArgs("-Dio.ktor.development=true")
(this as JavaExec).jvmArgs("-Dio.ktor.development=true", "-DwebuiLogLevel=trace")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/jvmMain/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<pattern>%d{YYYY-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="trace">
<root level="${webuiLogLevel:-debug}">
<appender-ref ref="STDOUT"/>
</root>
<logger name="org.eclipse.jetty" level="INFO"/>
Expand Down

0 comments on commit 08bf5f7

Please sign in to comment.