io.quarkus.logging.gelf.graal.KafkaGelfSenderProviderSubstitution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-logging-gelf Show documentation
Show all versions of quarkus-logging-gelf Show documentation
Log using the Graylog Extended Log Format and centralize your logs in ELK or EFK
package io.quarkus.logging.gelf.graal;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
import biz.paluch.logging.gelf.intern.GelfSender;
import biz.paluch.logging.gelf.intern.GelfSenderConfiguration;
@TargetClass(className = "biz.paluch.logging.gelf.intern.sender.KafkaGelfSenderProvider")
public final class KafkaGelfSenderProviderSubstitution {
@Substitute
public GelfSender create(GelfSenderConfiguration configuration) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy