summaryrefslogtreecommitdiff
path: root/deployment/src
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2026-02-02 18:51:19 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2026-02-02 18:58:43 +0100
commit13d08a8b815fafb9a009e3773af92ad2696cb5e5 (patch)
treec8116d35c53b749f72a2bf54d3bebce41beded03 /deployment/src
parent6d73e12e018980785808e13e393f41f6e20d18d6 (diff)
fix!: Update Quarkus to 3.31.1, use RuntimeValue for configuration.
Quarkus 3.31.1 is stricter than previous versions. This change brings the implementation of the recorder in line with its expectations. BREAKING CHANGE: API changes to GoogleCloudLoggingProcessor, GoogleCloudJsonLoggingRecorder. Change-Id: I98fd2a0308c664fb94278372a884dc42311a374e
Diffstat (limited to 'deployment/src')
-rw-r--r--deployment/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/deployment/GoogleCloudLoggingProcessor.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/deployment/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/deployment/GoogleCloudLoggingProcessor.java b/deployment/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/deployment/GoogleCloudLoggingProcessor.java
index 8ef0962..7d4a93f 100644
--- a/deployment/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/deployment/GoogleCloudLoggingProcessor.java
+++ b/deployment/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/deployment/GoogleCloudLoggingProcessor.java
@@ -4,7 +4,6 @@
package eu.mulk.quarkus.googlecloud.jsonlogging.deployment;
-import eu.mulk.quarkus.googlecloud.jsonlogging.runtime.GoogleCloudJsonLoggingConfiguration;
import eu.mulk.quarkus.googlecloud.jsonlogging.runtime.GoogleCloudJsonLoggingRecorder;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.annotations.ExecutionTime;
@@ -39,8 +38,7 @@ public class GoogleCloudLoggingProcessor {
*/
@BuildStep
@Record(ExecutionTime.RUNTIME_INIT)
- public LogConsoleFormatBuildItem setUpFormatter(
- GoogleCloudJsonLoggingRecorder recorder, GoogleCloudJsonLoggingConfiguration configuration) {
- return new LogConsoleFormatBuildItem(recorder.initialize(configuration));
+ public LogConsoleFormatBuildItem setUpFormatter(GoogleCloudJsonLoggingRecorder recorder) {
+ return new LogConsoleFormatBuildItem(recorder.initialize());
}
}