summaryrefslogtreecommitdiff
path: root/deployment
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-09-03 18:23:23 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-09-03 18:43:36 +0200
commit090b885b7d6dc82e5ec066dbf81d071086e9ec10 (patch)
tree3203c963cba5842a9f78af0e61e16697b14e9bd7 /deployment
parent5303673160fb8a52102a55774eb99dae1ebf5eda (diff)
Quarkus: Simplify and document on/off toggle.
Change-Id: I90b5879ff99ec54deb17453af709ce2ba7070c0d
Diffstat (limited to 'deployment')
-rw-r--r--deployment/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/deployment/GoogleCloudLoggingProcessor.java7
1 files changed, 4 insertions, 3 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 fdfcb1c..8ef0962 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,8 +4,8 @@
package eu.mulk.quarkus.googlecloud.jsonlogging.deployment;
+import eu.mulk.quarkus.googlecloud.jsonlogging.runtime.GoogleCloudJsonLoggingConfiguration;
import eu.mulk.quarkus.googlecloud.jsonlogging.runtime.GoogleCloudJsonLoggingRecorder;
-import eu.mulk.quarkus.googlecloud.jsonlogging.runtime.GoogleJsonLogConfig;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.annotations.ExecutionTime;
import io.quarkus.deployment.annotations.Record;
@@ -39,7 +39,8 @@ public class GoogleCloudLoggingProcessor {
*/
@BuildStep
@Record(ExecutionTime.RUNTIME_INIT)
- public LogConsoleFormatBuildItem setUpFormatter(GoogleCloudJsonLoggingRecorder recorder, GoogleJsonLogConfig config) {
- return new LogConsoleFormatBuildItem(recorder.initialize(config));
+ public LogConsoleFormatBuildItem setUpFormatter(
+ GoogleCloudJsonLoggingRecorder recorder, GoogleCloudJsonLoggingConfiguration configuration) {
+ return new LogConsoleFormatBuildItem(recorder.initialize(configuration));
}
}