Skip to content

Commit ff9d98d

Browse files
committed
chore: dep updates and logback changes
1 parent 038f663 commit ff9d98d

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

backend/agent/otel/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ dependencies {
7272
implementation(platform(libs.otel.instr.bom))
7373
compileOnly(libs.bundles.otel.agent.extn)
7474
compileOnly(libs.google.auto.annotations)
75-
annotationProcessor(libs.google.auto.service.apt)
7675
implementation(libs.otel.samplers)
76+
annotationProcessor(libs.google.auto.service.apt)
7777

7878
testImplementation(platform(libs.junit.bom))
7979
testImplementation(libs.junit.jupiter)

backend/jvm/src/main/kotlin/dev/suresh/App.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ fun initProps() {
5555
System.setProperty("jdk.includeInExceptions", "hostInfo")
5656
System.setProperty("LOG_DIR", logDir)
5757

58+
println("${BuildConfig.description} v${BuildConfig.version}")
59+
println("Log Dir: $logDir")
60+
5861
// Redirect JUL to SLF4J
5962
// SLF4JBridgeHandler.removeHandlersForRootLogger()
6063
// SLF4JBridgeHandler.install()

backend/jvm/src/main/resources/logback.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
</encoder>
5050
</appender>
5151

52+
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
53+
5254
<!--appender name="ASYNC-APP1" class="AsyncAppender">
5355
<appender-ref ref="APP1"/>
5456
<neverBlock>true</neverBlock>
@@ -79,7 +81,7 @@
7981
<encoder class="PatternLayoutEncoder">
8082
<pattern>${pattern}</pattern>
8183
<!--pattern>${otel-pattern}</pattern-->
82-
<outputPatternAsHeader>true</outputPatternAsHeader>
84+
<outputPatternAsHeader>false</outputPatternAsHeader>
8385
</encoder>
8486
</appender>
8587

compose/cmp/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ plugins {
1414
dev.suresh.plugin.publishing
1515
alias(libs.plugins.kotlin.compose.compiler)
1616
alias(libs.plugins.jetbrains.compose)
17+
// alias(libs.plugins.jetbrains.compose.hotreload)
1718
// alias(libs.plugins.detekt)
1819
}
1920

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ org-name = "suresh.dev"
2020
org-url = "https://suresh.dev"
2121

2222
# Gradle Dependencies Versions
23-
bc-plugins = "1.9.0"
23+
bc-plugins = "1.10.0"
2424
kotlinx-kover = "0.9.1"
2525
kotlinx-bcv = "0.17.0"
2626
kotlin-dokka = "2.0.0"

0 commit comments

Comments
 (0)